:root {
  --navy: #0B1F3B;
  --emerald: #00C389;
  --blue: #2F6BFF;
  --offwhite: #F6F8FB;
  --charcoal: #1C2430;
  --coral: #FF5A5F;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(11, 31, 59, 0.12);
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 31, 59, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  max-height: 50px;
}

.footer-logo {
  max-height: 100px;
}

.site-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.site-nav a {
  font-weight: 600;
  color: var(--navy);
}

.site-nav a.active {
  color: var(--blue);
}

#nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-close {
  display: none;
}

.hero {
  background: linear-gradient(120deg, #ffffff 0%, #eef3ff 100%);
  padding: 64px 0;
}

.hero-grid,
.focus-grid,
.stats-grid,
.facility-grid,
.page-hero-grid,
.form-grid,
.two-col {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-text h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid transparent;
}

.btn.primary {
  background: var(--emerald);
  color: #ffffff;
}

.btn.outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.highlights, .programs, .faq, .contact-form-section, .services-list, .values, .contact-details, .tools, .delivery {
  padding: 64px 0;
}

.focus, .stats, .facility, .learning, .mission, .about-contact, .service-cta, .visit {
  padding: 64px 0;
}

.grid-3, .grid-2 {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stats ul {
  margin-top: 16px;
  padding-left: 20px;
}

.page-hero {
  padding: 56px 0;
  background: #ffffff;
}

.page-hero h1 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact-form {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid rgba(11, 31, 59, 0.2);
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--navy);
}

.privacy-note {
  font-size: 0.9rem;
  color: rgba(28, 36, 48, 0.8);
}

.contact-list, .contact-details ul, .tools ul, .delivery ul {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 8px;
}

.faq-list details {
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  color: #ffffff;
  padding: 48px 0;
}

.site-footer p, .site-footer a {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-grid ul {
  list-style: none;
  padding-left: 0;
}

.footer-grid li {
  margin-bottom: 8px;
}

.legal {
  padding: 64px 0;
  background: #ffffff;
}

.legal h1, .legal h2 {
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.thanks {
  padding: 80px 0;
}

.submission-summary {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 90%;
  max-width: 520px;
  display: none;
  z-index: 999;
}

.cookie-content {
  display: grid;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .nav-toggle-label {
    display: block;
  }

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--offwhite);
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  #nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .nav-close {
    display: block;
    margin-left: auto;
    font-size: 32px;
    color: var(--navy);
    cursor: pointer;
  }
}

@media (max-width: 600px) {
  .hero, .highlights, .focus, .stats, .programs, .facility, .faq, .contact-form-section,
  .services-list, .delivery, .tools, .values, .learning, .mission, .about-contact, .service-cta,
  .visit, .page-hero {
    padding: 48px 0;
  }

  .cta-group {
    flex-direction: column;
  }
}