/* -------------------- */
/* Base Reset & Global Styles */
/* -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Georgia', serif;
  color: #1c1c1c;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* -------------------- */
/* Sticky Header Spacer */
/* -------------------- */
.header-spacer {
  height: 140px; /* Same as initial header height */
}

/* -------------------- */
/* Header (Navigation) */
/* -------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.2); /* dark and semi-transparent */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 140px;
  transition: height 0.3s ease;
}

.main-header.scrolled .logo img {
  height: 80px;
}

.navbar .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar .nav-links a {
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-header.scrolled .nav-links a {
  color: #0b1c3b;
}

.navbar .btn-nav {
  background: #ffd700;
  color: #0b1c3b !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* -------------------- */
/* Hero Slider */
/* -------------------- */
.hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 2;
  max-width: 600px;
  text-align: left;
}

.hero-content h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: #ffd700;
}

.btn-primary {
  background-color: #ffd700;
  color: #0b1c3b;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
}

/* -------------------- */
/* About Section */
/* -------------------- */
.about-umf {
  text-align: center;
  padding: 4rem
  background: #f9f9f9;
  padding-top: 160px; /* header height to push content below it */
  background: #f9f9f9;
}

.about-umf h2 {
  font-size: 2rem;
  color: #0b1c3b;
  margin-bottom: 1rem;
}

.about-umf p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1rem;
}

.read-more {
  color: #0b1c3b;
  font-weight: bold;
  border-bottom: 2px solid #0b1c3b;
}

/* -------------------- */
/* Features Section */
/* -------------------- */
.feature-section {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  gap: 2rem;
  background: white;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 300px;
  text-align: center;
  padding: 2rem;
  background: #f0f2f5;
  border-radius: 8px;
}

.feature-card img {
  height: 120px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #0b1c3b;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #0b1c3b;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

/* -------------------- */
/* Hero Banner */
/* -------------------- */
.hero-banner {
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
}

.hero-banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: #fff;
}

.breadcrumbs a {
  color: #ffd700;
}

/* -------------------- */
/* Mission Section */
/* -------------------- */
.mission-section {
  background-color: #f0f2f5;
  padding: 4rem 2rem;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-text {
  flex: 1;
  min-width: 300px;
}

.mission-text h2 {
  color: #0b1c3b;
  font-size: 1.75rem;
  margin-top: 1.5rem;
}

.mission-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mission-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mission-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

/* -------------------- */
/* Our Commitment Section */
/* -------------------- */
.commitment-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.commitment-section h2 {
  font-size: 2rem;
  color: #0b1c3b;
  margin-bottom: 1.5rem;
}

.commitment-section p {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.commitment-section .btn-primary {
  margin-top: 1.5rem;
}

/* -------------------- */
/* About Text Paragraph Section */
/* -------------------- */
.about-paragraph-section {
  padding: 4rem 2rem;
  background-color: #f0f2f5;
}

.about-text-block {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1c1c1c;
  text-align: left;
}

/* Shared Container Format */
.container.narrow-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: left;
}


/* Our Purpose Statement Section */
.statement-section {
  padding: 4rem 2rem;
  background-color: #f0f2f5;
  text-align: left;
}

.statement-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.statement-section h2 {
  font-size: 2rem;
  color: #0b1c3b;
  margin-bottom: 1.5rem;
}

.statement-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Purpose Pillars Section */
.pillars-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-content {
  flex: 2;
  min-width: 300px;
}

.pillars-content h2 {
  font-size: 2rem;
  color: #0b1c3b;
  margin-bottom: 1.5rem;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.pillar h3 {
  font-size: 1.2rem;
  color: #0b1c3b;
  margin-bottom: 0.4rem;
}

.pillars-side-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pillars-side-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

/* Biblical Foundation Section */
.foundation-section {
  padding: 4rem 2rem;
  background-color: #f0f2f5;
  text-align: center;
}

.foundation-section h2 {
  font-size: 2rem;
  color: #0b1c3b;
  margin-bottom: 1.2rem;
}

.foundation-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.foundation-section .btn-primary {
  padding: 0.75rem 1.5rem;
  background-color: #0b1c3b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .pillars-grid {
    flex-direction: column;
  }
  .pillars-side-image {
    margin-top: 2rem;
  }
}

/* -------------------- */
/* Credentialing Page */
/* -------------------- */
/* Hero Banner */
.hero-banner {
  height: 320px; /* within 300–350px range */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(13, 34, 66, 0.65); /* Navy (#0D2242) with ~65% opacity */
  z-index: 1;
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
  padding-top: 6rem; /* Shift content down from top */
}
.hero-banner-content h1 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.hero-banner-content p {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}
.hero-banner-content .btn-primary {
  background-color: #D4A017; /* Gold */
  color: #0D2242;             /* Navy */
  padding: 0.75rem 1.75rem;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

/* Intro Section */
.intro-section .container.narrow-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.intro-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0D2242;
  margin-bottom: 1rem;
}
.intro-section p {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #1c1c1c;
  line-height: 1.7;
}

/* Levels Section (Cards) */
.levels-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0D2242;
  text-align: center;
  margin-bottom: 2rem;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem 2rem;
}
.card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card .card‑icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
  margin: 0 auto 1rem; /* center the image horizontally, add bottom margin */
  display: block;
}
.card h3 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #0D2242;
  margin-bottom: 0.5rem;
}
.card p {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 1rem;
  color: #1c1c1c;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.card .btn-secondary {
  margin-top: auto;
  background-color: #D4A017;
  color: #0D2242;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section .container.narrow-text {
  padding: 4rem 2rem;
}
.benefits-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0D2242;
  margin-bottom: 1.5rem;
  text-align: center;
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
.checklist-col {
  list-style: none;
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #1c1c1c;
}
.checklist-col li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.checklist-col li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #D4A017;
}

/* Apply Section */
.apply-section .container.narrow-text {
  padding: 4rem 2rem;
  text-align: center;
}
.apply-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0D2242;
  margin-bottom: 1rem;
}
.apply-section .steps-list {
  list-style: none;
  text-align: left;
  padding-left: 0;
}
.apply-section .steps-list li {
  margin-bottom: 1rem;
}
.apply-section .btn-primary {
  background-color: #D4A017;
  color: #0D2242;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

/* Downloads Section */
.downloads-section .container.narrow-text {
  padding: 4rem 2rem;
}
.downloads-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0D2242;
  margin-bottom: 1rem;
  text-align: center;
}
.downloads-list {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #1c1c1c;
}
.downloads-list li {
  margin: 0.75rem 0;
}
.downloads-list li a {
  color: #0D2242;
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .hero-banner {
    height: 240px;
  }
}


/* ————— CML Page Specific Styles ————— */
.hero-banner {
  height: 60vh;
}
.hero-banner .hero-banner-content {
  width: 90%;
  max-width: 800px;
}
.two‑col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1rem;
}
.modules .card {
  margin-bottom: 2rem;
}
.card h3 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #0D2242;
  margin-bottom: 1rem;
}
.icon‑list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.icon‑list li::before {
  content: "•";
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: #F4B400;
}
.cta {
  background: #0D2242;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.cta .btn-primary {
  background-color: #F4B400;
  color: #0D2242;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
}
.cta .btn-secondary {
  background-color: white;
  color: #0D2242;
  border: 2px solid #F4B400;
  padding: 0.75rem 1.5rem;
}
@media (max-width: 768px) {
  .cta .btn-primary,
  .cta .btn-secondary {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* -------------------- */
/* Footer */
/* -------------------- */
.site-footer {
  background-color: #0b1c3b;
  color: white;
  padding: 3rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: left;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 300px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: white;
}

.footer-contact .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-contact .social-icons img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
}

/* -------------------- */
/* Responsive Styles */
/* -------------------- */
@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem; /* ✅ moves to far right */
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* ensures it's above other elements */
  }

  .logo img {
    height: 100px;
    margin: 0 auto;
  }

  .navbar {
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0b1c3b;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links a,
  .btn-nav {
    padding: 0.5rem 0;
    display: inline-block;
    color: white;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }
}


/* -------------------- */
/* Apply for Credentialing Page Styles */
/* -------------------- */

/* Main Heading Section */
.apply-heading-section .container {
  padding: 4rem 2rem;
  text-align: center;
}
.apply-heading-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #0d1b2a;  /* navy */
  margin-bottom: 0.5rem;
}
.apply-heading-section p {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: #1c1c1c;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Step‑by‑Step Process Cards */
.apply-steps-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}
.step-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #1c1c1c;
  margin-bottom: 0.5rem;
}
.step-card small {
  font-size: 0.9rem;
  color: #555;
}

/* Credential Level Selector Cards (reuse your .card styles) */
.credential-path-section {
  background-color: #f4f6f8;  /* light gray BG */
  padding: 4rem 2rem;
}
.credential-path-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0d1b2a;
  text-align: center;
  margin-bottom: 2rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cred-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cred-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}
.cred-card h4 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}
.cred-card p {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #1c1c1c;
  margin-bottom: 1rem;
}
.cred-card .btn-secondary {
  background-color: #f5b400; /* gold */
  color: #0d1b2a;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: auto;
}

/* Required Documents Section */
.documents-section .container {
  padding: 4rem 2rem;
}
.documents-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0d1b2a;
  text-align: center;
  margin-bottom: 1.5rem;
}
.documents-section .doc-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.documents-section .doc-buttons a {
  display: inline-block;
  text-align: center;
  background-color: #f5b400; /* gold */
  color: #0d1b2a;
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.documents-section .doc-buttons a:hover {
  background-color: #d4a017; /* slightly darker gold */
}

/* Begin Application CTA Box */
.begin-application-section .highlight-box {
  border: 2px solid #f5b400; /* gold border */
  padding: 3rem 2rem;
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}
.begin-application-section .highlight-box p {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #1c1c1c;
  margin-bottom: 1.5rem;
}
.begin-application-section .highlight-box .btn-gold {
  background-color: #f5b400;
  color: #0d1b2a;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1.05rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.begin-application-section .highlight-box .btn-gold:hover {
  background-color: #d4a017;
}

/* Contact Support Section */
.contact-support-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
}
.contact-support-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.contact-support-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2rem;
  color: #0d1b2a;
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-support-section p {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #1c1c1c;
  text-align: center;
  margin-bottom: 2rem;
}
.contact-support-section form {
  display: grid;
  gap: 1rem;
}
.contact-support-section form input,
.contact-support-section form textarea {
  padding: 0.75rem 1rem;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-support-section form button {
  background-color: #0d1b2a; /* navy */
  color: #f5b400;           /* gold */
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-support-section form button:hover {
  background-color: #0b1826; /* slightly darker navy */
}
.hidden {
  display: none !important;
}

.confirmation-section {
  padding: 6rem 2rem;
  background-color: #0b1c3b; /* navy background like footer/header */
  color: white;
}

.confirmation-section .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #ffd700; /* gold accent for heading */
  margin-bottom: 1.5rem;
}

.confirmation-section p {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
}

.confirmation-section .btn-primary {
  background-color: #ffd700; /* gold button */
  color: #0b1c3b;             /* navy text */
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive tweaks for this page */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .doc-buttons {
    grid-template-columns: 1fr;
  }
}