:root {
      color-scheme: light;
      --ink: #111b36;
      --logo-blue: #006aa2;
      --blue: var(--logo-blue);
      --blue-soft: #e6f2f7;
      --paper: #eff7fa;
      --white: #fff;
      --muted: #66708b;
      --line: #c9e1ed;
      --yellow: #ffdf42;
      --font-body: "DM Sans", sans-serif;
      --font-display: "Manrope", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--font-body);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button, select { font: inherit; }

    .site-header {
      width: min(1168px, calc(100% - 64px));
      height: 106px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      position: relative;
      z-index: 5;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      width: fit-content;
      color: var(--logo-blue);
      font-family: var(--font-display);
      letter-spacing: 0;
      white-space: nowrap;
    }
    .brand-wordmark { font-size: 27px; font-weight: 800; line-height: 1; }
    .brand-mark { width: 72px; height: 72px; object-fit: contain; }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 27px;
      padding: 13px 25px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      color: #5c6682;
      font-size: 14px;
    }
    .main-nav a { transition: color .2s ease; }
    .main-nav a:hover { color: var(--blue); }
    .mobile-menu { display: none; }
    .header-actions { display: flex; align-items: center; justify-self: end; gap: 18px; font-size: 14px; }
    .whatsapp-contact {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }
    .whatsapp-contact:hover { color: var(--blue); }
    .whatsapp-contact svg { width: 23px; height: 23px; flex: 0 0 23px; color: #25d366; }
    .contact-button {
      min-height: 38px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--logo-blue);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      transition: background .2s ease, transform .2s ease;
    }
    .contact-button:hover { background: #005581; transform: translateY(-1px); }
    .floating-contact {
      position: fixed;
      z-index: 20;
      top: 50%;
      right: 18px;
      display: grid;
      gap: 10px;
      transform: translateY(-50%);
    }
    .floating-contact a {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border: 1px solid #ffffff80;
      border-radius: 50%;
      background: var(--logo-blue);
      color: #fff;
      box-shadow: 0 5px 18px #111b3626;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .floating-contact a:hover { transform: translateX(-3px); box-shadow: 0 8px 22px #111b3633; }
    .floating-contact a:last-child { background: #25d366; }
    .floating-contact svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .floating-contact a:last-child svg { width: 25px; height: 25px; }
    .site-footer { padding: 68px 24px 22px; background: var(--ink); color: #fff; }
    .footer-container { width: min(1168px, 100%); margin: 0 auto; }
    .footer-grid {
      display: grid;
      grid-template-columns: minmax(220px, 1.45fr) repeat(2, minmax(130px, .8fr)) minmax(200px, 1fr);
      gap: 40px;
      padding-bottom: 48px;
    }
    .footer-brand { color: #fff; }
    .footer-brand .brand-mark { filter: brightness(0) invert(1); }
    .footer-brand .brand-wordmark { font-size: 24px; }
    .footer-description { max-width: 290px; margin: 18px 0 0; color: #b7c1d7; font-size: 13px; line-height: 1.7; }
    .footer-column h2 { margin: 4px 0 17px; color: #fff; font-size: 13px; font-weight: 700; }
    .footer-links { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
    .footer-links a { color: #b7c1d7; font-size: 13px; transition: color .2s ease; }
    .footer-links a:hover { color: var(--yellow); }
    .footer-contact-copy { margin: 0 0 16px; color: #b7c1d7; font-size: 13px; line-height: 1.6; }
    .footer-whatsapp { color: #fff; }
    .footer-whatsapp span { text-decoration: underline; text-decoration-color: #53617d; text-underline-offset: 4px; }
    .footer-bottom {
      min-height: 52px;
      padding-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid #37435e;
      color: #aeb9d0;
      font-size: 12px;
    }
    .footer-bottom p { margin: 0; }

    .hero {
      min-height: 795px;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 30px 24px 74px;
      text-align: center;
    }
    .hero::before {
      content: "";
      position: absolute;
      z-index: -1;
      width: min(1180px, 94vw);
      aspect-ratio: 1.64;
      top: 76px;
      left: 50%;
      transform: translateX(-50%);
      border: 1px solid var(--yellow);
      border-radius: 50%;
    }
    .orbit-card {
      position: absolute;
      z-index: 2;
      width: 126px;
      height: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border-radius: 12px;
      background: var(--white);
      box-shadow: 0 8px 24px #273d7810;
      font-size: 11px;
      font-weight: 600;
      animation: arrive .7s both;
    }
    .orbit-card .flag { width: 28px; height: 20px; object-fit: contain; }
    .card-cyprus { top: 60px; left: calc(50% - 420px); animation-delay: .08s; }
    .card-turkey { top: 60px; left: calc(50% - 63px); animation-delay: .14s; }
    .card-malaysia { top: 60px; left: calc(50% + 294px); animation-delay: .2s; }
    .card-ireland { top: 222px; left: calc(50% - 500px); animation-delay: .26s; }
    .card-england { top: 222px; left: calc(50% + 353px); animation-delay: .32s; }
    .card-university { top: 445px; left: calc(50% - 644px); animation-delay: .32s; }
    .card-scholarships { top: 445px; left: calc(50% + 497px); animation-delay: .38s; }
    .orbit-icon { width: 30px; height: 30px; color: var(--blue); }

    .photo-stack {
      width: min(545px, 78vw);
      height: 273px;
      position: relative;
      margin: 135px auto 30px;
    }
    .photo {
      position: absolute;
      width: 38%;
      height: 88%;
      top: 10px;
      overflow: hidden;
      border: 3px solid #fff;
      border-radius: 17px;
      background: #dce4ef;
      box-shadow: 0 15px 40px #1b2b501b;
    }
    .photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
    .photo-left { left: 4%; transform: rotate(-9deg); }
    .photo-right { right: 4%; transform: rotate(7deg); }
    .photo-center {
      z-index: 1;
      width: 38%;
      height: 90%;
      top: 25px;
      left: 31%;
      border-radius: 18px;
      transform: rotate(0);
    }
    .hero-copy { position: relative; z-index: 3; margin: 5px auto 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 12px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--blue); }
    h1 {
      max-width: 780px;
      margin: 0 auto;
      font-family: var(--font-display);
      font-size: clamp(42px, 5vw, 58px);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: 0;
    }
    h1 span { color: var(--blue); font-weight: 500; }
    .hero-description {
      max-width: 475px;
      margin: 14px auto 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }
    .register-cta {
      min-height: 40px;
      margin: 20px auto 0;
      padding: 0 8px 0 18px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border-radius: 999px;
      background: var(--yellow);
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
      transition: transform .2s ease;
    }
    .register-cta:hover { transform: translateY(-2px); }
    .register-cta span {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      font-size: 17px;
    }
    .services-section { padding: 82px 24px 92px; background: #f7f8ff; }
    .services-container { width: min(1168px, 100%); margin: 0 auto; }
    .service-search {
      position: relative;
      width: min(990px, 100%);
      min-height: 137px;
      margin: 34px auto 0;
      padding: 34px 23px 27px;
      border-radius: 17px;
      background: var(--ink);
      color: #fff;
    }
    .service-tabs {
      position: absolute;
      top: -23px;
      left: 50%;
      display: flex;
      gap: 1px;
      padding: 5px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: #263554;
      white-space: nowrap;
    }
    .service-tab {
      min-height: 32px;
      padding: 0 14px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
    }
    .service-tab[aria-pressed="true"] { background: var(--blue-soft); color: var(--blue); }
    .service-search-fields {
      display: grid;
      grid-template-columns: 1fr 1fr 88px;
      align-items: end;
      gap: 8px;
    }
    .service-search-field { min-width: 0; }
    .service-search-field label {
      display: block;
      margin: 0 0 10px;
      font-size: 14px;
      font-weight: 700;
    }
    .service-search-field input, .service-search-field select {
      width: 100%;
      height: 40px;
      padding: 0 20px;
      border: 1px solid #3b4967;
      border-radius: 999px;
      outline: 0;
      background: transparent;
      color: #fff;
      font-size: 12px;
    }
    .service-search-field input::placeholder { color: #bcc7df; opacity: 1; }
    .service-search-field select { color: #bcc7df; cursor: pointer; }
    .service-search-field option { background: #fff; color: var(--ink); }
    .service-search-button {
      height: 40px;
      border: 0;
      border-radius: 999px;
      background: var(--blue);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s ease;
    }
    .service-search-button:hover { background: #005581; }
    .service-search-status {
      min-height: 17px;
      margin: 7px 0 -17px;
      color: #c9d4ff;
      font-size: 11px;
    }
    .services-heading { max-width: 680px; margin: 0 auto; text-align: center; }
    .services-heading .eyebrow { margin-bottom: 13px; font-size: 11px; }
    .services-heading h2 {
      margin: 0 auto;
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 800;
      line-height: 1.16;
    }
    .services-intro { max-width: 570px; margin: 13px auto 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
    .service-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 42px;
    }
    .service-card {
      min-height: 294px;
      padding: 25px 24px 22px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      border: 1px solid #d7def3;
      border-radius: 8px;
      background: #fff;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px #17204412; }
    .service-card:nth-child(2) { border-color: #f0df87; background: #fff9df; }
    .service-card:nth-child(3) { border-color: var(--line); background: var(--blue-soft); }
    .service-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 27px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--blue);
      color: #fff;
    }
    .service-card:nth-child(2) .service-icon { background: var(--yellow); color: var(--ink); }
    .service-card:nth-child(3) .service-icon { background: #d9f1eb; color: #176e63; }
    .service-icon svg { width: 23px; height: 23px; }
    .service-kicker { margin: 0 0 9px; color: var(--blue); font-size: 10px; font-weight: 700; text-transform: uppercase; }
    .service-card h3 { margin: 0 0 10px; color: var(--ink); font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.2; }
    .service-card p { margin: 0; color: #69748d; font-size: 14px; line-height: 1.65; }
    .service-card a {
      margin-top: auto;
      padding-top: 24px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 700;
    }
    .service-card a span { font-size: 19px; transition: transform .2s ease; }
    .service-card a:hover span { transform: translateX(3px); }

    .partners-section { padding: 68px 24px 72px; background: var(--ink); color: #fff; }
    .partners-container { width: min(1168px, 100%); margin: 0 auto; }
    .partners-header {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
    }
    .partners-heading .eyebrow { margin-bottom: 10px; color: var(--yellow); font-size: 11px; }
    .partners-heading .eyebrow::before { background: var(--yellow); }
    .partners-heading h2 {
      margin: 0;
      color: #fff;
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 700;
      line-height: 1.2;
    }
    .partners-heading p { margin: 8px 0 0; color: #b7c1d7; font-size: 14px; line-height: 1.5; }
    .partner-controls { display: flex; gap: 8px; }
    .partner-control {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid #53617d;
      border-radius: 50%;
      background: transparent;
      color: #fff;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, opacity .2s ease;
    }
    .partner-control:hover:not(:disabled) { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
    .partner-control:disabled { opacity: .42; cursor: default; }
    .partner-control svg { width: 17px; height: 17px; }
    .partner-viewport { margin-top: 26px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
    .partner-viewport::-webkit-scrollbar { display: none; }
    .partner-track { width: max-content; margin: 0; padding: 0; display: flex; border-top: 1px solid #37435e; border-bottom: 1px solid #37435e; list-style: none; }
    .partner-card {
      width: 250px;
      min-height: 112px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-left: 1px solid #37435e;
      scroll-snap-align: start;
    }
    .partner-card:first-child { border-left: 0; }
    .partner-mark {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      display: grid;
      place-items: center;
      border: 1px solid #657391;
      border-radius: 50%;
      background: transparent;
      color: var(--yellow);
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 800;
    }
    .partner-copy { min-width: 0; display: grid; gap: 6px; }
    .partner-copy strong { color: #fff; font-size: 14px; line-height: 1.35; }
    .partner-copy span { color: #b7c1d7; font-size: 12px; }

    .student-offerings { padding: 88px 24px; background: #f7f8ff; }
    .offerings-container {
      width: min(1168px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(250px, .82fr) minmax(0, 1.18fr);
      align-items: center;
      gap: clamp(48px, 8vw, 112px);
    }
    .offerings-heading { max-width: 390px; }
    .offerings-heading .eyebrow { margin-bottom: 16px; font-size: 11px; }
    .offerings-heading h2 {
      margin: 0;
      color: var(--ink);
      font-family: var(--font-display);
      font-size: 43px;
      font-weight: 700;
      line-height: 1.12;
    }
    .offerings-heading h2 span { color: var(--blue); }
    .offerings-heading p {
      margin: 16px 0 0;
      color: #66708b;
      font-size: 15px;
      line-height: 1.7;
    }
    .offering-list { border-top: 1px solid #dce2f4; }
    .offering-row {
      min-height: 86px;
      padding: 14px 4px;
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr) 36px;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid #dce2f4;
      color: var(--ink);
      transition: padding .2s ease;
    }
    .offering-row:hover { padding-right: 0; padding-left: 9px; }
    .offering-index { color: var(--blue); font-size: 12px; font-weight: 700; }
    .offering-copy { display: grid; gap: 4px; }
    .offering-title { font-size: 16px; font-weight: 700; }
    .offering-detail { color: #707b96; font-size: 13px; line-height: 1.45; }
    .offering-arrow {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid #d4dcf5;
      border-radius: 50%;
      color: var(--blue);
      font-size: 17px;
      transition: color .2s ease, background .2s ease, border-color .2s ease;
    }
    .offering-row:hover .offering-arrow { border-color: var(--blue); background: var(--blue); color: #fff; }
    .enquire-link {
      width: fit-content;
      margin-top: 27px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 700;
    }
    .enquire-link span {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--ink);
      font-size: 17px;
      transition: transform .2s ease;
    }
    .enquire-link:hover span { transform: translateX(3px); }

    .application-section { padding: 70px 24px 78px; background: #fff; }
    .application-container { width: min(1100px, 100%); margin: 0 auto; }
    .application-title {
      margin: 0 0 48px;
      color: var(--blue);
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 800;
      line-height: 1.2;
      text-align: center;
    }
    .application-track { position: relative; }
    .application-connector {
      position: absolute;
      z-index: 0;
      top: 56px;
      left: 0;
      width: 100%;
      height: 118px;
      overflow: visible;
    }
    .application-connector path { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; }
    .application-mobile-connector { display: none; }
    .application-steps {
      position: relative;
      z-index: 1;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      list-style: none;
    }
    .application-step { min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .step-icon { width: 56px; height: 56px; color: #58637d; }
    .step-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .step-number {
      width: 72px;
      height: 72px;
      margin-top: 18px;
      display: grid;
      place-items: center;
      border: 6px solid #e5e8f1;
      border-top-color: var(--blue);
      border-right-color: var(--yellow);
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 12px #17204412;
      color: var(--blue);
      font-family: var(--font-display);
      font-size: 29px;
      font-weight: 700;
    }
    .application-step h3 { margin: 20px 0 2px; color: var(--ink); font-size: 16px; font-weight: 700; }
    .application-step p { max-width: 140px; margin: 0; color: #69748d; font-size: 14px; line-height: 1.4; }

    @keyframes arrive {
      from { opacity: 0; translate: 0 10px; }
      to { opacity: 1; translate: 0 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    }
    @media (min-width: 901px) and (max-width: 1150px) {
      .site-header { width: min(680px, calc(100% - 32px)); height: 64px; }
      .brand { gap: 3px; }
      .brand-wordmark { font-size: 22px; }
      .brand-mark { width: 56px; height: 56px; }
      .main-nav { gap: 14px; padding: 8px 14px; font-size: 11px; }
      .header-actions { gap: 9px; font-size: 11px; }
      .whatsapp-contact { gap: 6px; font-size: 11px; }
      .whatsapp-contact svg { width: 19px; height: 19px; flex-basis: 19px; }
      .contact-button { min-height: 29px; padding: 0 11px; font-size: 10px; }
      .hero { z-index: 1; min-height: 540px; padding: 12px 16px 0; overflow: visible; }
      .hero::before { top: -40px; width: min(690px, 95vw); aspect-ratio: 1.15; }
      .orbit-card { width: 70px; height: 44px; gap: 3px; border-radius: 8px; font-size: 7px; }
      .orbit-card .flag { width: 20px; height: 14px; }
      .orbit-icon { width: 21px; height: 21px; }
      .card-cyprus { top: 26px; left: calc(50% - 240px); }
      .card-turkey { top: 26px; left: calc(50% - 35px); }
      .card-malaysia { top: 26px; left: calc(50% + 170px); }
      .card-ireland { top: 116px; left: calc(50% - 277px); }
      .card-england { top: 116px; left: calc(50% + 195px); }
      .card-university { top: 238px; left: calc(50% - 357px); }
      .card-scholarships { top: 238px; left: calc(50% + 276px); }
      .photo-stack { width: 310px; height: 155px; margin: 88px auto 10px; }
      .photo { border-width: 2px; border-radius: 12px; }
      .photo-center { border-radius: 13px; }
      .hero-copy { margin-top: 5px; }
      .hero-copy > .eyebrow { margin-bottom: 8px; font-size: 9px; }
      h1 { max-width: 600px; font-size: clamp(32px, 3.3vw, 36px); }
      .hero-description { max-width: 420px; margin-top: 8px; font-size: 11px; line-height: 1.45; }
      .register-cta { min-height: 30px; margin-top: 14px; padding-left: 14px; gap: 8px; font-size: 10px; }
      .register-cta span { width: 22px; height: 22px; font-size: 14px; }
      .service-search {
        position: absolute;
        z-index: 4;
        bottom: -48px;
        left: 50%;
        width: min(660px, calc(100% - 32px));
        min-height: 0;
        margin: 0;
        padding: 20px 14px 14px;
        transform: translateX(-50%);
      }
      .service-tabs { top: -18px; padding: 4px; }
      .service-tab { min-height: 26px; padding: 0 10px; font-size: 10px; }
      .service-search-fields { grid-template-columns: 1fr 1fr 64px; gap: 6px; }
      .service-search-field label { margin-bottom: 6px; font-size: 11px; }
      .service-search-field input, .service-search-field select,
      .service-search-button { height: 30px; font-size: 10px; }
      .service-search-field input, .service-search-field select { padding: 0 12px; }
      .service-search-status { min-height: 0; margin: 5px 0 -5px; font-size: 10px; }
    }
    @media (max-width: 900px) {
      .site-header { width: min(100% - 40px, 720px); grid-template-columns: 1fr auto; height: 86px; }
      .main-nav { display: none; }
      .mobile-menu { display: block; position: absolute; top: 64px; right: 0; }
      .mobile-menu summary {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border: 1px solid #dce2f7;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        list-style: none;
      }
      .mobile-menu summary::-webkit-details-marker { display: none; }
      .menu-icon, .menu-icon::before, .menu-icon::after { width: 16px; height: 2px; display: block; border-radius: 2px; background: var(--ink); }
      .menu-icon { position: relative; }
      .menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
      .menu-icon::before { top: -5px; }
      .menu-icon::after { top: 5px; }
      .mobile-dropdown {
        position: absolute;
        top: 49px;
        right: 0;
        width: 190px;
        padding: 8px;
        display: grid;
        border: 1px solid #e8ebf4;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 14px 30px #17204418;
      }
      .mobile-dropdown a { padding: 10px 11px; border-radius: 7px; color: #5c6682; font-size: 14px; }
      .mobile-dropdown a:hover { background: var(--blue-soft); color: var(--blue); }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 26px; }
      .footer-brand-group { grid-column: 1 / -1; }
      .hero { min-height: 770px; padding-top: 24px; }
      .hero::before { width: 840px; top: 78px; }
      .orbit-card { width: 96px; height: 66px; gap: 4px; border-radius: 10px; font-size: 10px; }
      .orbit-card .flag { width: 24px; height: 17px; }
      .card-cyprus { top: 49px; left: calc(50% - 155px); }
      .card-turkey { top: 49px; left: calc(50% - 48px); }
      .card-malaysia { top: 49px; left: calc(50% + 59px); }
      .card-ireland { top: 184px; left: 18px; }
      .card-england { top: 184px; left: auto; right: 18px; }
      .card-university { left: 18px; }
      .card-scholarships { left: auto; right: 18px; }
    }
    @media (max-width: 600px) {
      .site-header { width: calc(100% - 32px); height: 76px; }
      .brand { gap: 2px; }
      .brand-wordmark { font-size: 20px; }
      .brand-mark { width: 48px; height: 48px; }
      .header-actions { gap: 10px; font-size: 12px; }
      .whatsapp-contact { gap: 6px; font-size: 11px; }
      .whatsapp-contact svg { width: 19px; height: 19px; flex-basis: 19px; }
      .contact-button { min-height: 31px; padding: 0 10px; font-size: 10px; }
      .floating-contact { right: 12px; gap: 8px; }
      .floating-contact a { width: 44px; height: 44px; }
      .floating-contact svg { width: 20px; height: 20px; }
      .floating-contact a:last-child svg { width: 22px; height: 22px; }
      .hero { min-height: 750px; padding: 20px 16px 52px; }
      .hero::before { width: 650px; top: 82px; }
      .orbit-card { width: 94px; height: 64px; gap: 4px; border-radius: 10px; font-size: 10px; }
      .orbit-card .flag { width: 24px; height: 17px; }
      .card-cyprus { top: 49px; left: calc(50% - 147px); }
      .card-turkey { top: 49px; left: calc(50% - 46px); }
      .card-malaysia { top: 49px; left: calc(50% + 55px); }
      .card-ireland { top: 184px; left: 8px; }
      .card-england { top: 184px; left: auto; right: 8px; }
      .card-university, .card-scholarships { display: none; }
      .photo-stack { width: min(430px, 88vw); height: 225px; margin-top: 125px; margin-bottom: 24px; }
      .photo { border-width: 2px; border-radius: 13px; }
      .photo-center { border-radius: 14px; }
      .eyebrow { font-size: 11px; }
      h1 { max-width: 440px; font-size: clamp(39px, 10vw, 49px); }
      .hero-description { max-width: 390px; font-size: 14px; }
      .services-section { padding: 58px 16px 64px; }
      .service-search { padding: 34px 15px 23px; }
      .service-tabs { max-width: calc(100% - 16px); }
      .service-tab { padding: 0 10px; font-size: 11px; }
      .service-search-fields { grid-template-columns: 1fr 1fr; gap: 12px; }
      .service-search-field label { margin-bottom: 7px; font-size: 11px; }
      .service-search-field input, .service-search-field select { padding: 0 11px; font-size: 11px; }
      .service-search-button { grid-column: 1 / -1; }
      .services-heading h2 { font-size: 31px; }
      .services-intro { font-size: 14px; }
      .service-cards { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
      .service-card { min-height: 250px; padding: 23px; }
      .service-icon { margin-bottom: 23px; }
      .student-offerings { padding: 52px 20px; }
      .offerings-container { grid-template-columns: 1fr; gap: 34px; }
      .offerings-heading { max-width: 440px; }
      .offerings-heading h2 { font-size: 35px; }
      .offering-row { min-height: 76px; grid-template-columns: 28px minmax(0, 1fr) 32px; gap: 10px; }
      .offering-arrow { width: 30px; height: 30px; }
    }
    @media (max-width: 700px) {
      .application-section { padding: 55px 20px 60px; }
      .application-title { margin-bottom: 32px; font-size: 32px; }
      .application-container { max-width: 480px; }
      .application-connector { display: none; }
      .application-mobile-connector {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        display: block;
        width: 100%;
        height: 660px;
        overflow: visible;
        pointer-events: none;
      }
      .application-mobile-connector path { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; }
      .application-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, 220px);
        gap: 0;
      }
      .application-steps::before { display: none; }
      .application-step {
        min-width: 0;
        min-height: 220px;
        padding: 0 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .application-step:nth-child(1) { grid-area: step-one; }
      .application-step:nth-child(2) { grid-area: step-two; }
      .application-step:nth-child(3) { grid-area: step-three; }
      .application-step:nth-child(4) { grid-area: step-four; }
      .application-step:nth-child(5) { grid-area: step-five; }
      .application-step:nth-child(6) { grid-area: step-six; }
      .application-steps { grid-template-areas: "step-one step-two" "step-four step-three" "step-five step-six"; }
      .step-icon { width: 48px; height: 48px; }
      .step-number { width: 62px; height: 62px; margin-top: 10px; font-size: 25px; }
      .application-step h3 { margin: 12px 0 1px; font-size: 15px; }
      .application-step p { max-width: 155px; font-size: 13px; }
      .site-footer { padding: 52px 20px 20px; }
      .footer-grid { gap: 30px 18px; padding-bottom: 34px; }
      .footer-contact { grid-column: 1 / -1; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
    }
    @media (max-width: 370px) {
      .header-actions { gap: 6px; }
      .header-actions .whatsapp-contact span { display: none; }
      .header-actions .contact-button { padding-right: 8px; padding-left: 8px; }
      .hero { padding-left: 12px; padding-right: 12px; }
    }
