:root {
  --primary: #0AB3B8;
  --secondary: #FFD700;
  --accent: #FF6B6B;
  --dark: #333333;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --gray: #888888;
  --transition: all 0.3s ease;
}

.page-header {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 70px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
  animation: fadeInDown 1s ease-out;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.page-content {
  padding: 5rem 0;
  background-color: var(--white);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.policy-section h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.policy-section p, .policy-section ul, .policy-section ol {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.policy-section ul, .policy-section ol {
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Contact Page Specific */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--gray);
}

.contact-details i {
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.2rem;
  width: 20px;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  padding: 0.8rem 2rem;
}

.map {
  height: 400px;
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    height: 40vh;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 1;
  }
  
  .contact-form {
    order: 0;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .policy-section h2 {
    font-size: 1.8rem;
  }
  
  .policy-section h3 {
    font-size: 1.3rem;
  }
}