:root {
    --navy: #1A2B5F;
    --yellow: #F5B800;
    --red: #C8192E;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --light-grey: #EEF0F4;
    --mid-grey: #6B7280;
    --dark: #111827;
    --funded-bg: #EBF3FB;
    --skills-orange: #FF8A00;
    --radius: 6px;
    --shadow: 0 2px 12px rgba(0,0,0,0.09);
    --max: 1160px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--dark);
    background: var(--white);
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  ul { list-style: none; }

  /* LAYOUT */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
  .section { padding: 72px 0; }
  .section--alt { background: var(--off-white); }
  .section--funded { background: var(--funded-bg); border-top: 4px solid var(--navy); border-bottom: 4px solid var(--navy); }
  .section-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
  .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
  .section-lead { font-size: 1.08rem; color: var(--mid-grey); max-width: 680px; margin-bottom: 32px; }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

  /* COMPLIANCE BAR */
  .compliance-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    text-align: center;
    padding: 8px 24px;
    letter-spacing: .04em;
  }

  /* NAV */
  .nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 5px;
    position: relative;
  }
  .nav__logo {
    background: transparent;
    padding: 6px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
  }
  .nav__logo img { height: 42px; width: auto; display: block; }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .nav__links a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    transition: color .2s;
    white-space: nowrap;
  }
  .nav__links a:hover { color: var(--red); }
  .nav__ctas {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    padding-left: 10px;
  }

  /* BUTTONS */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    white-space: nowrap;
    line-height: 1;
  }
  .btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
  .btn--primary:hover { background: #a01020; border-color: #a01020; }
  .btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
  .btn--outline:hover { background: var(--navy); color: var(--white); }
  .btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .btn--navy:hover { background: #0f1c3e; }
  .btn--yellow { background: var(--yellow); color: var(--navy); border-color: var(--yellow); font-weight: 800; }
  .btn--yellow:hover { background: #d9a200; border-color: #d9a200; }
  .btn--sm { padding: 8px 16px; font-size: 13px; }
  .btn--lg { padding: 14px 28px; font-size: 16px; }

  /* MOBILE NAV */
  .nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 1000px) {
    .nav__links {
      display: none;
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      background: var(--white);
      flex-direction: column;
      gap: 0;
      border-bottom: 2px solid var(--light-grey);
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
    .nav__links.open { display: flex; }
    .nav__links a { padding: 14px 24px; border-bottom: 1px solid var(--light-grey); }
    .nav__toggle { display: block; }
    .nav__ctas .btn--outline { display: none; }
  }
  @media (max-width: 600px) {
    .nav__ctas { display: none; }
  }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1c4a 60%, #1e3a6e 100%);
    color: var(--white);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -60px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,184,0,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,184,0,0.18);
    border: 1px solid rgba(245,184,0,0.4);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
  }
  .hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 720px;
  }
  .hero__title span { color: var(--yellow); }
  .hero__body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin-bottom: 20px;
  }
  .hero__funding-note {
    background: rgba(255,255,255,0.08);
    border-left: 4px solid var(--yellow);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 20px;
    margin: 28px 0 32px;
    max-width: 680px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
  }
  .hero__funding-note strong { color: var(--yellow); }
  .hero__funding-note p { margin-bottom: 8px; }
  .hero__funding-note p:last-child { margin-bottom: 0; }
  .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero__contact-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.6); }

  /* ABOUT */
  .why-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
  }
  .why-list li:last-child { border-bottom: none; }
  .why-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .info-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-grey);
    padding: 22px;
    box-shadow: var(--shadow);
  }
  .info-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mid-grey); margin-bottom: 6px; }
  .info-card__value { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.3; }

  /* SKILLS ASSURE BADGE */
  .skills-assure-logo-wrap {
    background: var(--white);
    border: 2px solid var(--skills-orange);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: inline-block;
    max-width: 280px;
  }
  .skills-assure-logo-wrap img { width: 220px; height: auto; }

  /* FUNDED SECTION */
  .funded-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .funded-program-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
  }

  /* TABLES */
  .table-wrap { overflow-x: auto; margin: 20px 0; }
  table { width: 100%; border-collapse: collapse; font-size: 14px; }
  thead { background: var(--navy); color: var(--white); }
  thead th { padding: 12px 16px; text-align: left; font-weight: 700; font-size: 13px; }
  tbody tr { border-bottom: 1px solid var(--light-grey); }
  tbody tr:nth-child(even) { background: var(--off-white); }
  tbody td { padding: 11px 16px; vertical-align: top; }
  .fee-highlight { font-weight: 700; color: var(--navy); }
  .detail-table tbody td:first-child { font-weight: 600; color: var(--navy); width: 45%; }

  /* ELIGIBILITY */
  .eligibility-list li {
    padding: 9px 0 9px 28px;
    position: relative;
    border-bottom: 1px solid var(--light-grey);
    font-size: 15px;
  }
  .eligibility-list li:last-child { border-bottom: none; }
  .eligibility-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 700;
  }
  .disclaimer-box {
    background: var(--white);
    border: 1px solid rgba(26,43,95,0.25);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius);
    padding: 20px 24px;
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.6;
    margin-top: 28px;
  }
  .disclaimer-box p { margin-bottom: 8px; }
  .disclaimer-box p:last-child { margin-bottom: 0; }

  /* COURSE CARDS */
  .course-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
  }
  .course-card--funded { border-color: var(--navy); border-width: 2px; }
  .course-card__header { background: var(--navy); color: var(--white); padding: 20px 22px; }
  .course-card--funded .course-card__header { background: linear-gradient(135deg, var(--navy), #1e3a6e); }
  .course-card__badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 8px;
  }
  .course-card__code { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 600; margin-bottom: 4px; }
  .course-card__title { font-size: 15px; font-weight: 800; line-height: 1.3; }
  .course-card__price-tag {
    background: var(--yellow);
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    padding: 8px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .course-card__price-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
  .course-card__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
  .course-card__about { font-size: 13.5px; line-height: 1.6; color: #374151; }
  .course-card__meta { font-size: 12.5px; color: var(--mid-grey); }
  .course-card__meta strong { color: var(--dark); }
  .course-card__roles { font-size: 12.5px; }
  .course-card__roles ul { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
  .course-card__roles li {
    background: var(--light-grey);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11.5px;
    color: var(--dark);
  }
  .course-card__cta { margin-top: auto; padding-top: 14px; }

  /* SHORT COURSES */
  .short-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
  }
  .short-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
  .short-card__title { font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.3; }
  .short-card__price { font-size: 18px; font-weight: 900; color: var(--navy); flex-shrink: 0; }
  .short-card__code { font-size: 11px; color: var(--mid-grey); margin-bottom: 6px; }
  .short-card__about { font-size: 13px; color: #374151; line-height: 1.6; margin-bottom: 10px; }
  .short-card__meta { font-size: 12px; color: var(--mid-grey); }
  .short-card__meta span { display: block; margin-bottom: 2px; }
  .short-card__meta strong { color: var(--dark); }

  /* CONTACT */
  .contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
  @media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; } }
  .contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
  .contact-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-item__label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--mid-grey); margin-bottom: 2px; }
  .contact-item__value { font-size: 16px; font-weight: 700; color: var(--navy); }

  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #D1D5DB;
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
    color: var(--dark);
    transition: border-color .2s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { outline: none; border-color: var(--navy); }
  .form-group textarea { min-height: 110px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

  /* NOTICE */
  .notice-warning {
    background: #FFF7E6;
    border: 1px solid #F5B800;
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 13.5px;
    color: #5a4000;
    margin: 16px 0;
    line-height: 1.6;
  }

  /* FOOTER */
  .footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 24px;
  }
  .footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  @media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; } }
  .footer__logo { margin-bottom: 14px; display: inline-block; padding: 8px 12px; }
  .footer__logo img { height: 38px; width: auto; background-color: white;}
  .footer__tagline { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.65); margin-bottom: 10px; margin-top: 14px; }
  .footer__rto { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); }
  .footer__heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: 14px; }
  .footer__links li { margin-bottom: 8px; }
  .footer__links a { text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.75); transition: color .2s; }
  .footer__links a:hover { color: var(--white); }
  .footer__sa-badge, .footer__sa-badge2 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.92);
    border-radius: var(--radius);
    padding: 10px 14px;
    margin-top: 18px;
    max-width: 260px;
  }
  .footer__sa-badge img { height: 52px; width: auto; }
  .footer__sa-badge2 img { height: 102px; width: auto; }
  .footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
  }

  /* UTILITIES */
  .mt-4 { margin-top: 16px; }
  .mt-6 { margin-top: 24px; }
  .mt-8 { margin-top: 32px; }
  .mb-4 { margin-bottom: 16px; }
  .flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 12px; }