:root {
  --blue: #004A98;
  --yellow: #FDB515;
  --cream: #FFF8E8;
  --light-blue: #EAF4FF;
  --light-yellow: #FFF1C7;
  --text: #1f2937;
  --muted: #64748b;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: var(--cream); color: var(--text); }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--yellow); backdrop-filter: blur(10px); }
.header-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.logo { height: 84px; width: auto; display: block; }
.contact-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; font-size: 14px; font-weight: 700; color: var(--blue); }
.contact-pills a { padding: 12px 14px; border-radius: 14px; background: var(--light-blue); }
.contact-pills a:last-child { background: var(--light-yellow); }
.nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; padding: 12px; border-radius: 18px; background: var(--blue); color: var(--white); font-weight: 700; font-size: 14px; }
.nav a { padding: 10px 14px; border-radius: 12px; transition: 0.2s ease; }
.nav a:hover, .nav a.active { background: var(--yellow); color: var(--blue); }
.section { padding: 72px 0; scroll-margin-top: 190px; }
.compact { padding-top: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
.hero-card, .assessment-card { background: var(--white); border: 1px solid var(--yellow); border-radius: 30px; padding: 42px; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.eyebrow { color: var(--yellow); text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; font-weight: 800; margin: 0 0 12px; }
h1, h2, h3 { color: var(--blue); margin: 0; line-height: 1.12; }
h1 { font-size: clamp(40px, 6vw, 60px); }
h2 { font-size: clamp(34px, 5vw, 48px); }
h3 { font-size: 24px; }
h1 span { color: var(--yellow); }
p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; border-radius: 16px; padding: 13px 22px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 18px rgba(0,0,0,.12); }
.btn-primary { background: var(--yellow); color: var(--blue); }
.btn-secondary { background: var(--light-blue); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); }
.big-btn { font-size: 18px; padding: 16px 30px; margin-top: 16px; }
.full-width { width: 100%; }
.hero-logo-card { text-align: center; }
.hero-logo-card img { width: min(600px, 100%); }
.two-cards, .support-grid, .reassurance-grid, .contact-grid, .about-grid { display: grid; gap: 28px; }
.two-cards, .support-grid, .contact-grid, .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reassurance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
.feature-card, .reassurance-grid article { padding: 32px; border-radius: 28px; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.blue-card { background: var(--light-blue); border: 1px solid var(--blue); }
.yellow-card { background: var(--light-yellow); border: 1px solid var(--yellow); }
.icon { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 30px; }
.yellow-card .icon, .support-selector:nth-child(2) .icon { background: var(--yellow); color: var(--blue); }
.center-title { text-align: center; max-width: 780px; }
.support-selector { border: 2px solid var(--yellow); background: var(--white); border-radius: 28px; padding: 30px; text-align: left; cursor: pointer; transition: .2s ease; }
.support-selector strong { display: block; color: var(--blue); font-size: 28px; margin-bottom: 10px; }
.support-selector small { color: var(--muted); font-size: 15px; }
.support-selector.active { background: var(--light-blue); border-color: var(--blue); }
.panel-card { margin-top: 28px; background: var(--white); border: 1px solid var(--yellow); border-radius: 28px; padding: 34px; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.support-panel { display: none; }
.support-panel.active { display: block; }
.tick-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; padding: 0; list-style: none; }
.tick-grid li { background: var(--light-blue); border-radius: 16px; padding: 16px; font-weight: 700; color: #334155; }
.tick-grid li:before, .aims-panel li:before { content: "✓ "; color: var(--blue); font-weight: 900; }
.yellow-list li { background: var(--light-yellow); }
.assessment-section { background: linear-gradient(180deg, transparent 0%, #fff 100%); }
.assessment-card { text-align: center; max-width: 860px; }
.reassurance-grid article { background: var(--white); border: 1px solid var(--yellow); }
.tutor-placeholder, .map-placeholder { min-height: 290px; border: 2px dashed var(--yellow); border-radius: 28px; display: grid; place-items: center; color: var(--blue); font-weight: 800; background: rgba(255,255,255,.6); }
.aims-panel { display: none; margin-top: 22px; padding: 24px; border-radius: 22px; background: var(--white); border: 1px solid var(--yellow); }
.aims-panel.open { display: block; }
.aims-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; color: #334155; }
.contact-form { display: grid; gap: 16px; }
input, textarea { width: 100%; border: 1px solid var(--yellow); border-radius: 14px; padding: 14px 16px; font: inherit; background: var(--white); }
input:focus, textarea:focus { outline: 3px solid rgba(253,181,21,.25); }
.contact-details { margin-top: 22px; }
.contact-details p { margin: 8px 0; }
.response-note { text-align: center; margin-top: 34px; }
.footer { background: var(--blue); color: var(--white); border-top: 4px solid var(--yellow); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer p { color: rgba(255,255,255,.82); font-size: 14px; margin: 0; }
.footer-brand { display: flex; align-items: center; gap: 16px; max-width: 540px; }
.footer-brand img { width: 90px; padding: 8px; border-radius: 12px; background: white; }
@media (max-width: 860px) {
  .header-top, .footer-inner, .footer-brand { flex-direction: column; align-items: flex-start; }
  .contact-pills, .hero-grid, .two-cards, .support-grid, .reassurance-grid, .contact-grid, .about-grid, .tick-grid { grid-template-columns: 1fr; }
  .logo { height: 80px; }
  .section { padding: 52px 0; scroll-margin-top: 240px; }
  .hero-card, .assessment-card { padding: 28px; }
}
