/* ==========================================================================
   Enhanced Policy Hero & Content Styling
   ========================================================================== */

/* ── HERO / BANNER ───────────────────────────────────────────────────────── */
.contact-hero {
  background-color: #003366;    /* brand blue */
  color: #ffffff;
  text-align: center;
  padding: 80px 15px;           /* extra top/bottom space */
}
.contact-hero .container {
  max-width: 700px;
  margin: 0 auto;
}
.contact-hero h1 {
  /* fluid font: min 2rem, preferred 6vw, max 3.2rem */
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: none;
}
.contact-hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  text-shadow: none;
}
.contact-hero .btn-order {
  background-color: #FFCC00;      /* brand yellow */
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.contact-hero .btn-order:hover {
  background-color: #e6b800;      /* darker yellow */
}

/* ── POLICY CONTENT WRAPPER ──────────────────────────────────────────────── */
.about-section {
  background: #ffffff;
  padding: 60px 15px;
}
.about-section .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ── POLICY HEADINGS ─────────────────────────────────────────────────────── */
.about-section h2 {
  color: #003366;                /* brand blue */
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.about-section p,
.about-section ul,
.about-section ol {
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-section ul,
.about-section ol {
  padding-left: 1.5rem;
}
.about-section li {
  margin-bottom: 0.5rem;
}

/* ── LINKS ──────────────────────────────────────────────────────────────── */
.about-section a {
  color: #FFCC00;
  text-decoration: underline;
  transition: color 0.2s;
}
.about-section a:hover {
  color: #e6b800;
}

/* ── LAST UPDATED ───────────────────────────────────────────────────────── */
.about-section em {
  display: block;
  margin-top: 1.5rem;
  color: #555555;
  font-style: italic;
}

/* ── RESPONSIVE ADJUSTMENTS ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 10px;
  }
  .contact-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .contact-hero p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }
  .about-section {
    padding: 40px 10px;
  }
  .about-section h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }
}
