*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal: #1a5c55;
    --teal-light: #e6f2f0;
    --teal-mid: #237a6e;
    --gold: #1a5c55;
    --gold-light: #e6f2f0;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --text-light: #888;
    --border: #e2e2e2;
    --bg: #ffffff;
    --bg-alt: #f8f7f5;
    --radius: 10px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); font-size: 16px; line-height: 1.6; }

  /* NAV */
  nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 0 5%; }
  .nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-mark { width: 36px; height: 36px; background: var(--teal); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .logo-mark svg { width: 20px; height: 20px; fill: white; }
  .logo-text { font-family: 'Lora', serif; font-weight: 600; font-size: 17px; color: var(--text); }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta { background: var(--teal); color: white !important; padding: 9px 20px; border-radius: 6px; font-weight: 500; }
  .nav-cta:hover { background: var(--teal-mid) !important; color: white !important; }

  /* ALERT BAR */
  .alert-bar { background: var(--gold-light); border-bottom: 1px solid #e8d5aa; text-align: center; padding: 9px 20px; font-size: 13px; color: var(--gold); font-weight: 500; letter-spacing: 0.01em; }
  .alert-dot { display: inline-block; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; margin-right: 8px; vertical-align: middle; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

  /* HERO */
  .hero { max-width: 1100px; margin: 0 auto; padding: 80px 5% 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #e6f2f0; color: #1a5c55; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
  .hero h1 { font-family: 'Lora', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.25; color: var(--text); margin-bottom: 20px; }
  .hero p { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--teal); color: white; text-decoration: none; padding: 13px 26px; border-radius: 7px; font-weight: 600; font-size: 15px; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); }
  .btn-secondary { background: white; color: var(--text); text-decoration: none; padding: 13px 26px; border-radius: 7px; font-weight: 500; font-size: 15px; border: 1.5px solid var(--border); transition: border-color 0.2s, transform 0.15s; display: inline-block; }
  .btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
  .hero-visual { position: relative; }
  .hero-img { width: 100%; border-radius: 16px; object-fit: cover; height: 400px; background: linear-gradient(135deg, #c8e6df 0%, #a8d5cc 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .hero-img-placeholder { width: 100%; height: 400px; border-radius: 16px; background: linear-gradient(135deg, #d4ede7 0%, #b8dfd7 50%, #9ecfc5 100%); display: flex; align-items: center; justify-content: center; position: relative; }
  .hero-img-placeholder::after { content: '🎓'; font-size: 80px; opacity: 0.6; }
  .hero-stat-card { position: absolute; bottom: -20px; left: -20px; background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .hero-stat-card strong { display: block; font-size: 22px; font-weight: 700; color: var(--teal); }
  .hero-stat-card span { font-size: 12px; color: var(--text-muted); }

  /* FORM SECTION */
  .form-section { background: var(--bg-alt); padding: 80px 5%; }
  .form-section-inner { max-width: 600px; margin: 0 auto; }
  .section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
  .section-title { font-family: 'Lora', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 10px; }
  .section-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 36px; }
  .form-card { background: white; border-radius: 14px; border: 1px solid var(--border); padding: 36px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1/-1; }
  .form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
  .form-group input, .form-group select { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 7px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text); background: white; outline: none; transition: border-color 0.2s; }
  .form-group input:focus, .form-group select:focus { border-color: var(--teal); }
  .form-submit { margin-top: 20px; width: 100%; background: var(--teal); color: white; border: none; padding: 14px; border-radius: 7px; font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; }
  .form-submit:hover { background: var(--teal-mid); }
  .form-privacy { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 12px; }

  /* FAQ / QUESTIONS */
  .questions-section { max-width: 1100px; margin: 0 auto; padding: 80px 5%; }
  .questions-section .section-eyebrow, .questions-section .section-title, .questions-section .section-sub { text-align: center; }
  .questions-section .section-sub { margin-bottom: 50px; }
  .questions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .question-card { background: var(--bg-alt); border-radius: var(--radius); padding: 28px; border: 1px solid transparent; transition: border-color 0.2s; }
  .question-card:hover { border-color: var(--teal); }
  .question-num { font-size: 12px; font-weight: 700; color: var(--teal); margin-bottom: 10px; letter-spacing: 0.06em; }
  .question-card h3 { font-family: 'Lora', serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
  .question-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  /* TESTIMONIALS */
  .testimonials { background: #1a3a36; padding: 80px 5%; }
  .testimonials-inner { max-width: 1100px; margin: 0 auto; }
  .testimonials .section-eyebrow { color: rgba(255,255,255,0.7); }
  .testimonials .section-title { color: white; }
  .testimonials .section-sub { color: rgba(255,255,255,0.75); margin-bottom: 48px; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 28px; }
  .testimonial-quote { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.9); margin-bottom: 24px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: white; flex-shrink: 0; }
  .author-name { font-weight: 600; color: white; font-size: 14px; }
  .author-detail { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }

  /* FAQ ACCORDION */
  .faq-section { max-width: 760px; margin: 0 auto; padding: 80px 5%; }
  .faq-section .section-title, .faq-section .section-sub { text-align: center; }
  .faq-section .section-sub { margin-bottom: 40px; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600; font-family: 'DM Sans', sans-serif; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq-arrow { width: 20px; height: 20px; flex-shrink: 0; color: var(--teal); transition: transform 0.25s; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-answer { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
  .faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }

  /* FOOTER */
  footer { background: #141414; color: rgba(255,255,255,0.7); padding: 60px 5% 30px; }
  .footer-inner { max-width: 1100px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 300px; }
  .footer-logo { display: flex; align-items: center; gap: 10px; }
  .footer-logo-mark { width: 32px; height: 32px; background: var(--teal); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
  .footer-logo-text { font-family: 'Lora', serif; font-weight: 600; font-size: 15px; color: white; }
  .footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
  .footer-col a:hover { color: white; }
  .footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
  .footer-legal { font-size: 12px; line-height: 1.7; }
  .footer-links { display: flex; gap: 20px; font-size: 12px; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-links a:hover { color: white; }

  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .questions-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .nav-links { display: none; }
    .footer-bottom { flex-direction: column; }
  }