/* ==================== BASE STYLES ==================== */
:root {
  --primary: #3A6EA5;
  --secondary: #FF6B35;
  --accent: #004E89;
  --light: #F8F9FA;
  --dark: #333F48;
  --text: #2D3748;
  --white: #FFFFFF;
  --success: #4CAF50;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);
  --container-padding: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.iti {
  width: 100%;
}

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 4rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col {
  flex: 1;
  padding: 1rem;
  min-width: 100%;
}

@media screen and (min-width: 768px) {
  .col {
    min-width: 0;
  }
  
  .col-1-2 {
    flex: 0 0 calc(50% - 2rem);
  }
  
  .col-1-3 {
    flex: 0 0 calc(33.333% - 2rem);
  }
  
  .col-2-3 {
    flex: 0 0 calc(66.666% - 2rem);
  }
  
  .col-1-4 {
    flex: 0 0 calc(25% - 2rem);
  }
}

/* ==================== COMPONENTS ==================== */
/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo img {
  height: 100%;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-large);
  padding: 2rem;
  transition: var(--transition);
  overflow-y: auto;
  z-index: 1001;
}

.nav.active {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  margin-top: 3rem;
}

.nav-item {
  margin-bottom: 1rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  z-index: 999;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 992px) {
  .nav-toggle, .nav-close {
    display: none;
  }
  
  .nav {
    position: static;
    width: auto;
    height: auto;
    max-width: none;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  
  .nav-menu {
    display: flex;
    margin: 0;
  }
  
  .nav-item {
    margin: 0 0 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #e45a24;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Cards */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-body {
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--light);
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  display: none;
}

@media screen and (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-image {
    display: block;
  }
}

/* Feature Blocks */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(58, 110, 165, 0.2);
}

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

.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.contact-form-wrapper {
  position: relative;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  color: #adb5bd;
}

.footer-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: #adb5bd;
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #adb5bd;
}

@media screen and (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2000;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-large);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent-text {
  margin-bottom: 1.5rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings-modal .cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  margin: 0;
  font-size: 1.1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--success);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.toggle-switch.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ==================== UNIQUE COMPONENTS ==================== */
/* Diagonal Sections */
.diagonal-section {
  position: relative;
  padding: 6rem 0;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  transform: skewY(-5deg);
  transform-origin: top left;
  z-index: -1;
}

/* Floating Elements */
.floating-element {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--white);
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--light);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 1rem 3rem 1rem 0;
  position: relative;
  width: 50%;
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding: 1rem 0 1rem 3rem;
  text-align: left;
}

.timeline-content {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.timeline-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 4px solid var(--primary);
  border-radius: 50%;
  top: 25px;
  right: -10px;
  z-index: 1;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
  right: auto;
}

@media screen and (max-width: 767px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
    padding: 1rem 0 1rem 70px;
  }
  
  .timeline-item::after,
  .timeline-item:nth-child(even)::after {
    left: 21px;
  }
}

/* Animated Counter */
.counter-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.counter-item {
  position: relative;
}

.counter-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.counter-title {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Interactive Elements */
.interactive-card {
  perspective: 1000px;
  height: 300px;
  margin-bottom: 2rem;
}

.interactive-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.interactive-card:hover .interactive-card-inner {
  transform: rotateY(180deg);
}

.interactive-card-front, .interactive-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.interactive-card-front {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.interactive-card-back {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
  box-shadow: var(--shadow);
}

/* Progress Bars */
.progress-bar-container {
  margin-bottom: 1.5rem;
}

.progress-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-bar-title {
  font-weight: 500;
}

.progress-bar-percentage {
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: var(--light);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--primary);
  border-radius: 5px;
  transition: width 1s ease;
}

/* Full-bleed Sections */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr min(90ch, 100%) 1fr;
}

.content-grid > * {
  grid-column: 2;
}

.content-grid > .full-bleed {
  grid-column: 1 / -1;
}

/* ==================== PAGE SPECIFIC STYLES ==================== */
/* Main Page */
.concept-visual {
  position: relative;
  height: 400px;
  margin: 3rem 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.concept-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  padding: 2rem;
}

.concept-content {
  color: var(--white);
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .concept-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    align-items: flex-end;
  }
  
  .concept-content {
    max-width: 100%;
  }
}

/* Information Page */
.stats-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.stat-description {
  color: #6c757d;
}

@media screen and (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Education Page */
.education-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.method-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.method-image {
  height: 200px;
  overflow: hidden;
}

.method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.method-card:hover .method-image img {
  transform: scale(1.05);
}

.method-content {
  padding: 1.5rem;
  background-color: var(--white);
}

.method-title {
  margin-bottom: 1rem;
}

.method-description {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .education-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .education-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Page */
.contact-info {
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.contact-content {
  flex-grow: 1;
}

.contact-title {
  margin-bottom: 0.5rem;
}

.contact-text {
  color: #6c757d;
}

.contact-map {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 3rem;
}

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

@media screen and (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Thanks Page */
.thanks-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thanks-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.policy-date {
  margin-bottom: 2rem;
  color: #6c757d;
  font-style: italic;
}

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

.policy-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}