    :root {
      --navy: #0d3d6d;
      --navy-dark: #092d4a;
      --blue: #1f66c5;
      --gold: #f3c75a;
      --gold-deep: #dc9d1f;
      --gold-light: #f9ebba;
      --red: #e75a4a;
      --orange: #f57c32;
      --cream: #f8f6f1;
      --white: #ffffff;
      --text: #1a2d3b;
      --muted: #5d6c7b;
      --line: #e1e8f3;
      --green: #25d366;

      --max-width: 1180px;
      --radius: 22px;
      --shadow: 0 20px 60px rgba(13, 61, 109, 0.14);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "DM Sans", sans-serif;
      color: var(--text);
      line-height: 1.65;
      background: var(--white);
      overflow-x: hidden;
    }

    img {
      width: 100%;
      display: block;
    }

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: min(var(--max-width), calc(100% - 40px));
      margin: auto;
    }

    .section {
      padding: 95px 0;
    }

    h1,
    h2,
    h3 {
      font-family: "Playfair Display", serif;
      line-height: 1.12;
    }

    h2 {
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3.25rem);
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 48px;
    }

    .section-heading p {
      color: var(--muted);
      margin-top: 17px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .74rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--gold);
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      border: none;
      border-radius: 999px;
      padding: 14px 24px;
      font-weight: 700;
      cursor: pointer;
      transition: .25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
      color: var(--navy-dark);
      box-shadow: 0 12px 25px rgba(243, 199, 90, 0.28);
    }

    .btn-dark {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      color: white;
    }

    .btn-light {
      background: white;
      color: var(--navy);
    }

    .white-text {
      color: #ffffff !important;
    }

    .gradient-text {
      background: linear-gradient(135deg, #f9ebba 0%, #f3c75a 30%, #1f66c5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }


    /* TOP BAR */

    .topbar {
      background: var(--navy);
      color: #dfe9f2;
      font-size: .8rem;
    }

    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }


    /* NAVIGATION */

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #edf0f3;
    }

    .nav {
      height: 78px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .brand-mark {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: linear-gradient(135deg, #ffffff 0%, #f9ebba 100%);
      border: 2px solid rgba(243, 199, 90, 0.86);
      display: grid;
      place-items: center;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(13, 61, 109, 0.12);
      padding: 5px;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 11px;
      background: transparent;
    }

    .brand strong {
      display: block;
      color: var(--navy);
      font: 700 1.08rem "Playfair Display";
    }

    .brand small {
      color: var(--muted);
      font-size: .66rem;
      letter-spacing: .06em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: .9rem;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .menu-btn {
      display: none;
      border: none;
      background: transparent;
      color: var(--navy);
      font-size: 1.7rem;
      cursor: pointer;
    }


    /* HERO */

    .hero {
      min-height: calc(100vh - 116px);
      display: flex;
      align-items: center;
      background:
        linear-gradient(
          110deg,
          #f7f3ea,
          #ffffff 52%,
          #edf4fb 100%
        );
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 70px;
      align-items: center;
    }

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

    .hero h1 span {
      color: var(--gold);
    }

    .hero-description {
      max-width: 620px;
      margin: 23px 0 29px;
      color: #536273;
      font-size: 1.08rem;
    }

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

    .hero-trust {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .trust-item strong {
      display: block;
      color: var(--navy);
    }

    .trust-item small {
      color: var(--muted);
    }

    .hero-visual {
      position: relative;
    }

    .hero-image {
      height: 590px;
      overflow: hidden;
      border-radius: 36px 36px 100px 36px;
      box-shadow: var(--shadow);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-card {
      position: absolute;
      left: -30px;
      bottom: 28px;
      max-width: 315px;
      padding: 20px 23px;
      border-radius: 20px;
      background: white;
      box-shadow: var(--shadow);
    }

    .hero-card strong {
      display: block;
      color: var(--navy);
      font: 700 1.18rem "Playfair Display";
    }

    .hero-card span {
      color: var(--muted);
      font-size: .84rem;
    }

    .hero-badge {
      position: absolute;
      top: 30px;
      right: -22px;
      width: 112px;
      height: 112px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 8px solid white;
      background: var(--gold);
      color: var(--navy);
      text-align: center;
      font-size: .72rem;
      font-weight: 800;
      transform: rotate(8deg);
    }


    /* ABOUT */

    .about-grid,
    .leadership-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 78px;
      align-items: center;
    }

    .about-image,
    .leadership-image {
      position: relative;
      height: 520px;
      overflow: hidden;
      border-radius: 30px;
    }

    .about-image img,
    .leadership-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-note {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 19px;
      border-radius: 18px;
      color: white;
      background: rgba(16,42,67,.92);
    }

    .about-note strong {
      font: 700 1.25rem "Playfair Display";
    }

    .about-content p,
    .leadership-content > p {
      color: var(--muted);
      margin: 17px 0;
    }

    .pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 26px;
    }

    .pillar {
      padding: 19px;
      border: 1px solid var(--line);
      border-radius: 17px;
    }

    .pillar-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 10px;
      border-radius: 12px;
      background: var(--gold-light);
    }

    .pillar h3 {
      color: var(--navy);
      font-size: 1.03rem;
    }

    .pillar p {
      margin: 4px 0 0;
      font-size: .84rem;
    }


    /* WHY US */

    .cream {
      background: var(--cream);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      padding: 29px;
      background: white;
      border: 1px solid #eee;
      border-radius: 22px;
      transition: .25s;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: var(--navy);
      color: var(--gold);
      font-size: 1.25rem;
    }

    .feature-card h3 {
      margin: 12px 0 8px;
      color: var(--navy);
      font-size: 1.3rem;
    }

    .feature-card p {
      color: var(--muted);
      font-size: .9rem;
    }


    /* ACADEMICS */

    .dark-section {
      color: white;
      background: var(--navy);
    }

    .dark-section h2 {
      color: white;
    }

    .dark-section .section-heading p {
      color: #c4d0db;
    }

    .learning-levels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .learning-level {
      min-height: 285px;
      padding: 29px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 25px;
      background: rgba(255,255,255,.04);
    }

    .learning-number {
      margin-bottom: auto;
      color: var(--gold);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .12em;
    }

    .learning-level h3 {
      font-size: 1.8rem;
    }

    .learning-level p {
      margin-top: 9px;
      color: #c4d0db;
      font-size: .88rem;
    }


    /* LEADERSHIP */

    .quote {
      margin: 24px 0;
      padding-left: 23px;
      border-left: 3px solid var(--gold);
      color: var(--navy);
      font: 1.4rem "Playfair Display";
    }

    .signature {
      color: var(--navy);
      font-weight: 700;
    }


    /* ADMISSIONS */

    .admission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 55px;
    }

    .admission-steps {
      display: grid;
      gap: 13px;
    }

    .admission-step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      padding: 18px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 17px;
    }

    .step-number {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--navy);
      color: var(--gold);
      font-weight: 800;
    }

    .admission-step h3 {
      color: var(--navy);
      font-size: 1.04rem;
    }

    .admission-step p {
      color: var(--muted);
      font-size: .84rem;
    }

    .admission-box {
      position: sticky;
      top: 105px;
      padding: 40px;
      border-radius: 30px;
      background: var(--navy);
      color: white;
    }

    .admission-box h3 {
      font-size: 2rem;
    }

    .admission-box > p {
      margin: 14px 0 24px;
      color: #cbd6df;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin: 20px 0;
    }

    .contact-list a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .9rem;
    }

    .contact-list i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(255,255,255,.1);
      font-style: normal;
    }


    /* GALLERY */

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      grid-template-rows: 240px 240px;
      gap: 15px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .gallery-item:first-child {
      grid-row: 1 / 3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-label {
      position: absolute;
      left: 14px;
      bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(16,42,67,.86);
      color: white;
      font-size: .72rem;
    }


    /* FAQ */

    .faq-list {
      max-width: 850px;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
      background: white;
      border: 1px solid var(--line);
      border-radius: 16px;
    }

    .faq-question {
      width: 100%;
      padding: 20px 23px;
      border: none;
      background: white;
      color: var(--navy);
      text-align: left;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-answer p {
      padding: 0 23px 19px;
      color: var(--muted);
      font-size: .88rem;
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }


    /* CTA */

    .cta {
      padding: 85px 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      color: white;
    }

    .cta-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
    }

    .cta h2 {
      max-width: 720px;
    }

    .cta p {
      margin-top: 10px;
    }


    /* FOOTER */

    .footer {
      padding: 58px 0 24px;
      background: var(--navy-dark);
      color: #d1dce5;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 55px;
      padding-bottom: 40px;
    }

    .footer p {
      max-width: 390px;
      margin-top: 16px;
      color: #9eb0bf;
      font-size: .87rem;
    }

    .footer h3 {
      margin-bottom: 15px;
      color: white;
      font: 700 .9rem "DM Sans";
    }

    .footer-links {
      display: grid;
      gap: 9px;
      color: #aebdca;
      font-size: .84rem;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: #8497a8;
      font-size: .75rem;
    }


    /* WHATSAPP */

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 90;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--green);
      color: white;
      font-size: 1.35rem;
      box-shadow: 0 10px 25px rgba(0,0,0,.2);
    }


    /* ANIMATION */

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }


    /* RESPONSIVE */

    @media(max-width: 900px) {

      .nav-links {
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        padding: 15px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 10px;
      }

      .menu-btn {
        display: block;
      }

      .hero-grid,
      .about-grid,
      .leadership-grid,
      .admission-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .hero {
        padding: 70px 0;
      }

      .hero-image {
        height: 500px;
      }

      .hero-card {
        left: 15px;
      }

      .hero-badge {
        right: 15px;
      }

      .feature-grid {
        grid-template-columns: 1fr 1fr;
      }

      .learning-levels {
        grid-template-columns: 1fr;
      }

      .learning-level {
        min-height: 220px;
      }

      .admission-box {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
    }

    @media(max-width: 600px) {

      .container {
        width: calc(100% - 28px);
      }

      .topbar-inner {
        justify-content: center;
      }

      .topbar-inner span:last-child {
        display: none;
      }

      .nav {
        height: 70px;
      }

      .nav-links {
        top: 70px;
        left: 14px;
        right: 14px;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .hero-image {
        height: 420px;
        border-radius: 25px;
      }

      .hero-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
      }

      .hero-badge {
        width: 90px;
        height: 90px;
        font-size: .6rem;
      }

      .section {
        padding: 72px 0;
      }

      .feature-grid,
      .pillars {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px 180px;
      }

      .gallery-item:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
      }

      .cta-inner {
        display: block;
      }

      .cta .btn {
        margin-top: 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: auto;
      }

      .copyright {
        display: block;
      }

      .copyright span {
        display: block;
        margin-top: 8px;
      }
    }
