/* Policy Pages Styling - Consistent with Hero Section */

/* Hero Section Background */
.hero.section.dark-background {
  background: linear-gradient(135deg, #0E2537 0%, #1A365D 50%, #3A7CA5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 60px;
}

/* Container Styling */
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

/* Main Title */
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #f59220;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.025em;
}

/* Subtitle/Paragraph */
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero p strong {
  color: #f59220;
  font-weight: 600;
}

/* Section Headers (h2) */
.hero h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(245, 146, 32, 0.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Subsection Headers (h3) */
.hero h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f59220;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Lists */
.hero ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.hero li::marker {
  color: #f59220;
}

/* Links */
.hero a {
  color: #f59220;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.hero a:hover {
  color: #ff9d2e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero h3 {
    font-size: 1.25rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero.section.dark-background {
    padding: 80px 0 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}
