
    :root {
      --blue-900: #0f2747;
      --blue-800: #173963;
      --blue-700: #1d4f86;
      --blue-100: #eaf1f8;
      --gold-500: #c6922b;
      --gold-600: #a7771b;
      --text: #1e2a35;
      --muted: #5f6f7f;
      --border: #d9e3ed;
      --bg: #ffffff;
      --bg-soft: #f6f9fc;
      --max: 980px;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(15,39,71,.08);
    }

.nav-toggle {
  display: none;
}
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

    img { max-width: 100%; display: block; height: auto; }
    a { color: inherit; }

    .container {
      width: min(94%, var(--max));
      margin: 0 auto;
    }

    .site-header {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 10px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      text-decoration: none;
    }

    .brand-mark {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #fff;
      display: grid;
      place-items: center;
      overflow: hidden;
      flex: 0 0 auto;
      box-shadow: var(--shadow);
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-copy .title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue-900);
      line-height: 1.2;
    }

    .brand-copy .subtitle {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.2;
      margin-top: 4px;
    }

    .nav-toggle {
      display: none;
      background: var(--blue-800);
      color: #fff;
      border: 0;
      border-radius: 10px;
      padding: 10px 14px;
      font-weight: 700;
      cursor: pointer;
    }

    .main-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .main-nav a {
      text-decoration: none;
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 500;
    }

    .main-nav a:hover { color: var(--blue-700); }

    .btn {
      display: inline-block;
      text-decoration: none;
      border-radius: 999px;
      padding: 13px 22px;
      font-weight: 700;
      font-size: 1rem;
      border: 0;
      cursor: pointer;
      transition: transform .15s ease, background-color .15s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--gold-500);
      color: #fff;
      box-shadow: var(--shadow);
      border: 1px solid var(--gold-600);
    }

    .btn-primary:hover { background: var(--gold-600); }

    .btn-secondary {
      background: #fff;
      color: var(--blue-800);
      border: 1px solid rgba(255,255,255,.65);
    }

    .hero {
      background: linear-gradient(90deg, rgba(15,39,71,.94) 0%, rgba(23,57,99,.90) 48%, rgba(23,57,99,.70) 100%), url('images/homepage-hero.jpg') center/cover no-repeat;
      color: #fff;
      padding: 84px 0 74px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .8rem;
      font-weight: 700;
      color: #f2d28b;
      margin-bottom: 12px;
    }

    .hero h1 {
      margin: 0 0 16px;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.05;
      font-weight: 700;
      text-align: center;
    }

    .hero p.lead {
      font-size: 1.28rem;
      line-height: 1.55;
      color: #f3f6fb;
      max-width: 700px;
      margin: 0 0 26px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-card {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 22px;
      padding: 26px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(6px);
    }

    .hero-card h2 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.35rem;
      line-height: 1.2;
    }

    .hero-card p {
      margin: 0 0 10px;
      color: #eef3f8;
    }

    .hero-card p:last-child { margin-bottom: 0; }

    .section {
      padding: 76px 0;
      font-size: 1.2rem;
    }

    .section-soft { background: var(--bg-soft); }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 38px;
      align-items: center;
    }

    .image-panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .placeholder-image {
      min-height: 360px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 28px;
      color: var(--blue-800);
      font-weight: 700;
      background:
        linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.25)),
        linear-gradient(135deg, #dce8f4, #c4d5e7);
    }

    .copy-block h2 {
      margin: 0 0 14px;
      color: var(--blue-900);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.14;
      font-weight: 700;
    }

    .copy-block h3 {
      margin: 0 0 14px;
      color: var(--blue-900);
      font-size: 1.65rem;
      line-height: 1.2;
    }

    .copy-block p {
      margin: 0 0 14px;
      font-size: 1.18rem;
    }

    .copy-block p:last-child { margin-bottom: 0; }

    .section-head {
      max-width: 820px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .section-head h2 {
      margin: 0 0 12px;
      color: var(--blue-900);
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      line-height: 1.14;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .step-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .step-number {
      display: inline-block;
      margin-bottom: 12px;
      font-size: .82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold-600);
    }

    .step-card h3 {
      margin: 0 0 12px;
      color: var(--blue-900);
      font-size: 1.32rem;
      line-height: 1.22;
    }

    .step-card p {
      margin: 0 0 16px;
      color: var(--text);
      font-size: 1.18rem;
    }

    .step-card a {
      color: var(--blue-700);
      font-weight: 700;
      text-decoration: none;
    }

    .step-card a:hover { text-decoration: underline; }

    .highlight-box {
      max-width: 980px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid var(--border);
      border-left: 8px solid var(--gold-500);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .highlight-box p {
      margin: 0 0 14px;
      font-size: 1 rem;
    }

    .highlight-box p:last-child { margin-bottom: 0; }

    .closing {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    .closing p {
      margin: 0 0 14px;
      font-size: 1.18rem;
    }

    .closing strong { color: var(--blue-900); }

    .footer {
      background: linear-gradient(90deg, rgba(15,39,71,.94) 0%, rgba(23,57,99,.90) 48%, rgba(23,57,99,.70) 100%);
      color: #e7eef7;
      padding: 46px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 28px;
    }

    .footer h3 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 1.02rem;
    }

    .footer p,
    .footer li,
    .footer a {
      color: #ffffff;
      text-decoration: none;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer li { margin-bottom: 8px; }

    .footer a:hover {
      text-decoration: none;
      color: #ffffff;
    }
    
    @media (max-width: 980px) {
      .hero-grid,
      .split,
      .steps,
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .nav-toggle { display: inline-block; }
      .main-nav { display: none; width: 100%; }
      .main-nav.open { display: block; }
      .header-inner { flex-wrap: wrap; }
      .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 10px;
      }
      .hero { padding: 68px 0 58px; }
      .placeholder-image { min-height: 280px; }
    }
    
    @media (max-width: 760px) {

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.open {
    display: block;
  }

}
@media (max-width: 760px) {

  .highlight-box {
    display: flex !important;
    flex-direction: column !important;
  }

  .highlight-box > div:first-child {
    order: 2;
  }

  .highlight-box > div:last-child {
    order: 1;
    margin-bottom: 18px;
  }

}
  
    #training {
      scroll-margin-top: 120px;
    }

 
  