:root {
  --primary: #0B1F3B;
  --accent: #00C2FF;
  --secondary: #22C55E;
  --background: #F7FAFC;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --gradient: linear-gradient(135deg, #00C2FF 0%, #7C3AED 100%);
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

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

.logo-footer {
  height: 100px;
  width: auto;
  margin-bottom: 12px;
}

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

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

.nav-burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.nav-close {
  display: none;
}

.hero {
  padding: 80px 0;
  background: var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-meta {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.meta-card {
  padding: 20px;
  background: var(--background);
  border-radius: var(--radius);
}

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

.section-head h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--primary);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

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

.card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
  color: var(--primary);
}

.programs,
.approach,
.facility,
.faq,
.contact-form-section,
.story,
.values,
.methodology,
.local-focus,
.outcomes,
.services-list,
.delivery,
.process,
.support,
.contact-details,
.visit,
.contact-faq,
.summary,
.legal-content,
.keywords-block {
  padding: 70px 0;
}

.approach-grid,
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin-top: 20px;
}

.checklist li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

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

.faq-item {
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 680px;
}

.form-row {
  display: grid;
  gap: 8px;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  font-size: 16px;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.page-hero {
  padding: 70px 0 40px;
  background: var(--surface);
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--primary);
  margin-bottom: 10px;
}

.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 0;
}

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

.site-footer a {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 16px 0;
  box-shadow: 0 -12px 24px rgba(15, 23, 42, 0.08);
  display: none;
  z-index: 2000;
}

.cookie-grid {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.summary-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.legal-content h2 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.keywords-block p {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--primary);
    color: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: none;
  }

  .site-nav a {
    color: #fff;
    font-size: 20px;
  }

  .nav-burger {
    display: block;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 30px;
    cursor: pointer;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }
}

@media (max-width: 720px) {
  .cookie-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-grid {
    padding: 14px 0;
  }

  .logo {
    height: 42px;
  }
}

@media (max-width: 520px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }
}