/* =========================================
   BASE RESETS & GLOBAL SETTINGS
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #002a4e;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  scroll-margin-top: 90px; /* prevents header overlap on anchor clicks */
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

/* Fallback for browsers without backdrop-filter */
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  header {
    background: #ffffffee;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}

.logo {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00B8A9;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.cta-btn {
  background: #f7a200;
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #e69100;
}

/* =========================================
   HERO SECTION (DESKTOP)
   ========================================= */
.hero {
  position: relative;
  height: 85vh;
  min-height: 520px;
  background: url("../images/family-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero h1 span {
  color: #f6b100;
}

.hero p {
  font-size: 1rem;
  color: #fff;
}

.hero .cta-btn.large {
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #f6b100;
  border: none;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.hero .cta-btn.large:hover {
  background-color: #e59a00;
}

/* =========================================
   WAVE DIVIDER
   ========================================= */
.wave-divider svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* =========================================
   COVERAGE SECTION (Perfect Circle Icons)
   ========================================= */
.coverage {
  padding: 4rem 1rem;
  text-align: center;
}

.coverage h2 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  justify-items: center;
  max-width: 900px;
  margin: 2rem auto;
}

.coverage-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  width: 170px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.coverage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* =========================================
   COVERAGE ICONS (Perfect Circle Fix)
   ========================================= */
.coverage-icon {
  width: 70px;
  height: 70px;
  aspect-ratio: 1 / 1; /* ✅ ensures exact circle at all screen sizes */
  border-radius: 50%;
  background: linear-gradient(145deg, #0072BB, #00B2A9);
  display: inline-flex; /* ✅ prevents flex/grid distortion on desktop */
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  flex-grow: 0;
  line-height: 0; /* ✅ avoids text line-height interference */
}

.coverage-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.coverage-item:hover .coverage-icon img {
  transform: scale(1.08);
  opacity: 1;
}

.coverage-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #003366;
  text-align: center;
}

/* Responsive */
@media (max-width: 480px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 400px;
  }

  .coverage-item {
    width: 100%;
    height: auto;
    padding: 1rem 0.8rem;
  }

  .coverage-icon {
    width: 60px;
    height: 60px;
  }

  .coverage-icon img {
    width: 30px;
    height: 30px;
  }

  .coverage-item p {
    font-size: 0.85rem;
    line-height: 1.25;
  }
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
  padding: 3rem 1rem;
  text-align: center; /* centers title, paragraph, video, and CTA */
  background-color: #fff; /* optional: keeps it cleanly separated */
}


.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.video-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@supports (aspect-ratio: 16 / 9) {
  .video-embed::before { display: none; }
  .video-embed { aspect-ratio: 16 / 9; }
}

/* === VIDEO SECTION ENHANCEMENTS (Title, Subtext & CTA) === */
.video-section h2 {
  color: #003366;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.video-subtext {
  color: #003366;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.5;
  opacity: 0.9;
}

.video-section .cta-btn.center {
  display: inline-block;
  margin: 2rem auto 0;
  background-color: #f7a200;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-section .cta-btn.center:hover {
  background-color: #e69100;
  transform: translateY(-3px);
}

/* =========================================
   REQUISITOS DE ELEGIBILIDAD (Optimized)
   ========================================= */
.eligibility-section {
  background-color: #f9fbfc;
  text-align: center;
  padding: 80px 20px;
}

.eligibility-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #0A2E56;
  font-weight: 700;
  margin-bottom: 50px;
}

.eligibility-container {
  max-width: 1100px;
  margin: 0 auto;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-bottom: 40px;
}

.eligibility-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 250px;
  height: 240px; /* ✅ ensures equal size for all four */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.eligibility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Icon circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0072BB, #00B2A9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.icon-circle img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.eligibility-item:hover .icon-circle {
  transform: scale(1.08);
}

/* Text */
.eligibility-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A2E56;
  margin: 0;
  line-height: 1.3;
}

/* CTA Button */
.eligibility-cta {
  display: inline-block;
  background-color: #F4A51C;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  padding: 16px 36px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(244, 165, 28, 0.4);
}

.eligibility-cta:hover {
  background-color: #e09300;
  transform: scale(1.05);
}

/* =========================================
   RESPONSIVE REFINEMENTS
   ========================================= */


/* Tablets */
@media (max-width: 768px) {
  .eligibility-item {
    padding: 30px 15px;
    height: 200px; /* ✅ uniform card height for tablets */
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle img {
    width: 30px;
    height: 30px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .eligibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 400px;
  }

  .eligibility-item {
    padding: 1rem 0.8rem;
    height: 180px; /* ✅ equal height for all cards on phones */
    border-radius: 12px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
  }

  .icon-circle img {
    width: 26px;
    height: 26px;
  }

  .eligibility-item p {
    font-size: 0.85rem;
    line-height: 1.25;
  }

  .eligibility-cta {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 0.9rem 1.4rem;
  }
}

/* Smallest phones (iPhone SE etc.) */
@media (max-width: 360px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .eligibility-item {
    height: 170px; /* ✅ keeps consistency on tiny screens */
  }

  .eligibility-item p {
    font-size: 0.88rem;
  }
}


/* =========================================
   COBERTURA BÁSICA (Responsive & Centered)
   ========================================= */
.coverage {
  background: linear-gradient(180deg, #f3f9fc 0%, #e8f7f5 100%);
  text-align: center;
  padding: 4rem 1rem 4.5rem;
}

/* Heading */
.coverage h2 {
  color: #003366;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 2.5rem;
  line-height: 1.3;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtext {
  max-width: 700px;
  margin: 0.8rem auto 2.2rem;
  font-size: 1.05rem;
  color: #0A2E56;
  line-height: 1.6;
  text-align: center;
}


/* Grid Layout */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;        /* ✅ allows full-width layout on desktop */
  margin: 0 auto 1.5rem;
}

/* Card Style */
.coverage-item {
  background: #ffffffee;
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
}

.coverage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.coverage-item img {
  width: 38px;
  margin-bottom: 0.6rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.coverage-item:hover img {
  opacity: 1;
}

.coverage-item p {
  margin: 0;
  font-size: 1rem;
  color: #003366;
  font-weight: 600;
  line-height: 1.3;
}

/* =============================
   Responsive Refinements
   ============================= */

/* Tablets */
@media (max-width: 900px) {
  .coverage-grid {
    max-width: 820px;
    gap: 1rem;
  }
}

/* Phones */
@media (max-width: 480px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    max-width: 400px;
  }

  .coverage-item {
    min-height: 110px;
    padding: 1rem 0.8rem;
  }

  .coverage-item img {
    width: 28px;
    margin-bottom: 0.4rem;
  }

  .coverage-item p {
    font-size: 0.88rem;
  }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 360px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   FAQ SECTION — Enhanced Layout
   ========================================= */
.faq-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: left;
}

.faq-section h2 {
  text-align: center;
  color: #003366;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

/* Each FAQ item */
.faq-item {
  border-bottom: 1px solid #e0e6eb;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
}

/* Question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #003366;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 1.2rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
}

.faq-question:hover {
  background-color: #f7fafd;
  box-shadow: 0 0 0 2px rgba(0,114,187,0.1);
}

/* Expanded (active) state */
.faq-question.active {
  background-color: #f0f8ff;
  box-shadow: 0 0 0 2px #0072bb;
}

/* Plus icon or toggle */
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: #00b2a9;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  color: #333;
  line-height: 1.6;
  margin-top: 0;
}

.faq-item.open .faq-answer {
  margin-top: 0.5rem;
}


/* Responsive */
@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 1rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: linear-gradient(90deg, #0072BB, #00B8A9);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.footer-container {
  background: transparent; /* Ensure no white overlay behind the logo */
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
  background: transparent; /* Explicitly remove white background fill */
  display: inline-block;
  filter: brightness(0) invert(1); /* ✅ makes logo white on dark gradient */
}

footer p {
  font-size: 0.9rem;
  margin: 0;
}


/* =========================================
   HAMBURGER MENU
   ========================================= */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: #f7a200;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* X (open) state */
.menu-toggle.is-open span { transform: rotate(45deg); }
.menu-toggle.is-open span::before { transform: rotate(90deg); top: 0; }
.menu-toggle.is-open span::after { opacity: 0; }

/* Mobile nav panel */
@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .cta-btn { display: none; }

  #primary-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transform: translateY(-120%);
    transition: transform .25s ease;
    z-index: 1000;
  }

  #primary-nav.open { transform: translateY(0); }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 14px 18px;
  }

  .nav-links a {
    display: block;
    padding: 12px 6px;
    font-size: 18px;
    color: #003366;
  }

  body.no-scroll { overflow: hidden; }
}

/* =========================================
   MOBILE HERO (<= 768px)
   ========================================= */
@media (max-width: 768px) {
  .hero {
    position: relative;
    height: auto;
    background: linear-gradient(180deg, #f4fbff 0%, #ffffff 90%) !important;
    color: #003366;
    min-height: 80vh;
    padding: 80px 20px 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    overflow: visible;
    background-size: 100% 200%;
    animation: gradientFloat 8s ease-in-out infinite alternate;
  }

  @keyframes gradientFloat {
    0% { background-position: center top; }
    100% { background-position: center bottom; }
  }

  .hero-overlay { display: none !important; }

  .hero-content {
    margin-top: 50px;
    gap: 16px;
  }

  .hero h1 {
    font-size: 8vw;
    line-height: 1.2;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
  }

  .hero h1 span { color: #f6b100; }

  .hero p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0 auto 30px;
    max-width: 90%;
  }

  .hero .cta-btn.large {
    display: inline-block;
    margin-top: 10px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #f6b100;
    color: #fff;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(246, 177, 0, 0.35);
    z-index: 2;
    position: relative;
    transition: transform 0.2s ease, background-color 0.3s ease;
  }

  .hero .cta-btn.large:hover {
    background-color: #e59a00;
    transform: translateY(-2px);
  }

  /* Decorative bottom wave */
  .hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23d5f7f9' fill-opacity='1' d='M0,160L48,144C96,128,192,96,288,101.3C384,107,480,149,576,176C672,203,768,213,864,213.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L0,320Z'></path></svg>") no-repeat bottom center;
    background-size: cover;
    z-index: 1;
  }

  .menu-toggle { display: block; }

  #requisitos .cta-btn.center { margin-top: 18px; }

  #requisitos .req-grid { gap: 1rem; }
  #requisitos .req-grid div { padding: 15px 20px; }
}

/* --- Mobile-friendly layout for Beneficios section --- */
@media (max-width: 768px) {
  .beneficios-grid {
    flex-direction: column;
    text-align: center;
  }

  .beneficios-text {
    flex: none;
    width: 100%;
    order: 1;
  }

  .beneficios-img {
    flex: none;
    width: 100%;
    order: 2;
    margin-top: 1.5rem;
  }

  .beneficios-img img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }
}

/* =========================================
   BENEFICIOS (Responsive Desktop Alignment)
   ========================================= */
.beneficios {
  padding: 4rem 1rem;
  background: #fff;
}

.beneficios-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.beneficios-text {
  flex: 1 1 50%;
  text-align: left;
}

.beneficios-img {
  flex: 1 1 50%;
  text-align: right;
}

.beneficios-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile (stacked layout) */
@media (max-width: 768px) {
  .beneficios-grid {
    flex-direction: column;
    text-align: center;
  }

  .beneficios-text {
    order: 1;
    width: 100%;
  }

  .beneficios-img {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .beneficios-img img {
    max-width: 100%;
  }
}

.beneficios-text a.cta-btn,
.beneficios-text .cta-btn {
  display: inline-block;
  background: #ffb400;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(255, 153, 0, 0.25);
  transition: all 0.3s ease;
  margin-top: 1.2rem; /* ✅ adds clean vertical spacing */
}

.beneficios-text .cta-btn:hover {
  background: #ffaa00;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 153, 0, 0.3);
}


 /* === FOOTER STYLES (Enhanced) === */
.footer-container {
  text-align: center;
  color: #fff;
  padding: 50px 20px;
  background: linear-gradient(90deg, #0072BB, #00B2A9);
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-text {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links {
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-link {
  color: #fff;
  text-decoration: underline;
  margin: 0 8px;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.2s ease, filter 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

.footer-tagline {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

/* RESPONSIVE FOOTER */
@media (max-width: 600px) {
  .footer-logo {
    max-width: 160px;
  }

  .footer-text,
  .footer-links,
  .footer-tagline {
    font-size: 14px;
  }
}

/* === Internal Page Hero === */
.hero-internal {
  background: linear-gradient(135deg, #0072BB, #00B2A9);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}
.hero-internal h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.hero-internal p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* === Info Grid (reuse existing grid style) === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.info-item img {
  width: 60px;
  margin-bottom: 1rem;
}
.info-item h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}
.info-item p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Callout + Final CTA reuse from index.css === */
.final-cta {
  text-align: center;
  padding: 3rem 1rem 4rem;
}
.final-cta h2 {
  color: #003366;
  margin-bottom: 1.5rem;
}


/* =========================================
   INTERNAL PAGE REFINEMENTS
   ========================================= */

/* Hero section for internal pages */
.hero-internal {
  background: linear-gradient(135deg, #0072BB, #00B2A9);
  color: #fff;
  text-align: center;
  padding: 4.5rem 1rem 3.5rem;
}

.hero-internal h1 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-internal p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  margin: 1.5rem auto 2.5rem;
  max-width: 1000px;
  padding: 0 1rem;
  color: #003366;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li {
  color: #003366;
}

.breadcrumb li::after {
  content: "›";
  color: #00B2A9;
  margin-left: 0.5rem;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #00A3AD;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Info grid spacing for internal page */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  text-align: center;
}

.info-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.8rem;
}

.info-item h3 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Video section cleanup */
.video-section {
  text-align: center;
  padding: 4rem 1rem;
  background: #f9fbfc;
}

.video-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.video-section p {
  color: #333;
  max-width: 700px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}

.video-embed {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #0072BB, #00B2A9);
  color: #fff;
}

.final-cta h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.final-cta .cta-btn {
  background: #f7a200;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-cta .cta-btn:hover {
  background: #e69100;
  transform: translateY(-3px);
}
