    :root {
      --blue: #075985;
      --blue-dark: #064e75;
      --green: #12805f;
      --green-dark: #0b5d45;
      --gold: #f59e0b;
      --ink: #0f172a;
      --text: #243244;
      --muted: #64748b;
      --soft: #f8fafc;
      --soft-blue: #eff6ff;
      --soft-green: #ecfdf5;
      --line: #e2e8f0;
      --white: #ffffff;
      --shadow: 0 14px 34px rgba(15, 23, 42, .08);
      --radius: 20px;
      --max: 1280px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--ink);
      background: #fff;
      line-height: 1.65;
    }

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

    a {
      color: var(--blue);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 12px;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 10px;
      z-index: 999;
      background: #fff;
      color: var(--ink);
      padding: 10px 14px;
      border-radius: 10px;
      border: 1px solid var(--line);
    }

    .skip-link:focus {
      left: 10px;
    }

    .top-note {
      background: #0b2f23;
      color: #e7f8f1;
      font-size: .92rem;
    }

    .top-note-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 8px 0;
      flex-wrap: wrap;
    }

    .top-note a {
      color: #fff;
      font-weight: 700;
    }

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

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      min-width: max-content;
    }

    .brand img {
      width: 40px;
      height: auto;
    }

    .brand strong {
      display: block;
      font-size: 1.05rem;
      line-height: 1.1;
    }

    .brand small {
      display: block;
      color: var(--muted);
      font-size: .78rem;
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-left: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .nav a {
      color: var(--ink);
      font-size: .94rem;
      font-weight: 700;
    }

    .nav .nav-cta {
      background: var(--blue);
      color: #fff;
      padding: 10px 15px;
      border-radius: 999px;
    }

    .language-select {
      max-width: 120px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      font-weight: 600;
      cursor: pointer;
    }

    .nav-toggle {
      display: none;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 12px;
      padding: 8px 11px;
      font-size: 1.25rem;
      cursor: pointer;
    }

    .hero {
      background:
        radial-gradient(circle at 85% 5%, rgba(245, 158, 11, .22), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #eef7ff 44%, #ffffff 100%);
      border-bottom: 1px solid var(--line);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: center;
      padding: 4px 0;
    }

    .hero-copy,
    .hero-card {
      background: rgba(255, 255, 255, .9);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .hero-copy {
      padding: 30px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 3px 12px;
      border: 1px solid rgba(7, 89, 133, .2);
      background: var(--soft-blue);
      color: var(--blue-dark);
      border-radius: 999px;
      font-size: .88rem;
      font-weight: 800;
    }

    h1,
    h2,
    h3 {
      color: var(--ink);
      line-height: 1.15;
    }

    h1 {
      margin: 10px 0 8px;
      font-size: clamp(2rem, 2vw, 2rem);
      letter-spacing: -.04em;
    }

    h2 {
      margin: 0 0 12px;
      font-size: clamp(1.65rem, 2vw, 1.55rem);
      letter-spacing: -.025em;
    }

    h3 {
      margin: 0 0 8px;
      font-size: 1.15rem;
    }

    p {
      margin: 0 0 12px;
      color: var(--text);
    }

    .lead {
      max-width: 98ch;
      color: #334155;
      font-size: 1.08rem;
    }

    .hero-actions,
    .button-row,
    .tag-row,
    .card-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      font-weight: 800;
      line-height: 1.2;
      text-decoration: none;
      cursor: pointer;
    }

    .btn:hover {
      text-decoration: none;
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }

    .btn-green {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }

    .btn-gold {
      background: var(--gold);
      border-color: var(--gold);
      color: #1f1603;
    }

    .link-pill {
      display: inline-flex;
      align-items: center;
      padding: 7px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--soft-blue);
      color: var(--blue-dark);
      font-size: .86rem;
      font-weight: 800;
    }

    .link-pill:hover {
      background: #dbeafe;
      text-decoration: none;
    }

    .hero-card {
      overflow: hidden;
    }

    .hero-image {
      background: #eff6ff;
      padding: 6px;
    }

    .hero-image img {
      width: 100%;
      height: 305px;
      object-fit: contain;
      object-position: center;
      border-radius: 20px;
    }

    .hero-card-body {
      padding: 12px;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 16px;
    }

    .mini-stat {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 12px;
      background: var(--soft);
    }

    .mini-stat strong {
      display: block;
      color: var(--blue-dark);
      font-size: 1rem;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: .88rem;
    }

    .search-panel {
      margin-top: 20px;
      padding: 16px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
    }

    .search-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr auto;
      gap: 10px;
    }

    input,
    select {
      width: 100%;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--ink);
      outline: none;
    }

    input:focus,
    select:focus,
    .btn:focus,
    .nav-toggle:focus {
      outline: 3px solid rgba(7, 89, 133, .18);
      outline-offset: 2px;
    }

    .tag {
      display: inline-flex;
      padding: 6px 10px;
      border: 1px solid var(--line);
      background: var(--soft);
      color: var(--muted);
      border-radius: 999px;
      font-size: .84rem;
      font-weight: 700;
    }

    .rating {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid #f5deb0;
      background: #fffbeb;
      color: #1f2937;
      font-weight: 700;
    }

    .rating-stars {
      color: #f59e0b;
      letter-spacing: 1px;
    }

    .section {
      padding: 32px 0;
    }

    .section.soft {
      background: var(--soft);
    }

    .section-header {
      max-width: 900px;
      margin-bottom: 28px;
    }

    .section-header.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .sub {
      color: var(--muted);
      font-size: 1.04rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
      display: grid;
      gap: 18px;
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .click-card {
      position: relative;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .click-card:hover {
      transform: translateY(-3px);
      border-color: rgba(7, 89, 133, .32);
      box-shadow: 0 18px 42px rgba(15, 23, 42, .11);
    }

    .click-card h3 a {
      color: var(--ink);
      text-decoration: none;
    }

    .click-card h3 a:hover {
      color: var(--blue);
    }

    .service-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      border-radius: 16px;
      background: var(--soft-blue);
      color: var(--blue-dark);
      font-weight: 900;
    }

    .service-note {
      margin-top: 12px;
      color: var(--muted);
      font-size: .94rem;
    }

    .country-panel {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: start;
    }

    .map-card {
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #fff;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .map-card img {
      width: 100%;
      max-height: 380px;
      object-fit: contain;
      object-position: center;
      background: var(--soft-blue);
      border-radius: 22px;
      padding: 10px;
    }

    .country-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 16px;
    }

    .country-list a {
      display: block;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--ink);
      font-weight: 750;
    }

    .country-list a:hover {
      background: var(--soft-blue);
      text-decoration: none;
    }

    .steps {
      counter-reset: step;
    }

    .step-card::before {
      counter-increment: step;
      content: counter(step);
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-bottom: 12px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      font-weight: 900;
    }

    .tour-strip {
      border-radius: 30px;
      padding: 34px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(6, 78, 117, .94), rgba(18, 128, 95, .88)),
        url("https://www.africatourvisa.com/img/africa-tour-digital.webp") center/cover;
      box-shadow: var(--shadow);
    }

    .tour-strip h2,
    .tour-strip p {
      color: #fff;
    }

    .table-wrap {
      overflow: auto;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    table {
      width: 100%;
      min-width: 780px;
      border-collapse: collapse;
    }

    th,
    td {
      padding: 15px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    th {
      background: var(--blue);
      color: #fff;
      font-size: .88rem;
      text-transform: uppercase;
      letter-spacing: .02em;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    .notice {
      margin-top: 18px;
      padding: 16px;
      border: 1px solid #f6d28b;
      background: #fffbeb;
      border-radius: 16px;
      color: #3a2a0a;
    }

    .check-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 0;
      margin: 16px 0 0;
      list-style: none;
    }

    .check-list li {
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--text);
    }

    .check-list li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--green);
      font-weight: 900;
    }

    .faq details {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px 18px;
      margin-bottom: 12px;
      box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
    }

    .faq summary {
      cursor: pointer;
      font-weight: 850;
      color: var(--ink);
    }

    .faq p {
      margin-top: 10px;
      color: var(--muted);
    }

    .final-cta {
      background: linear-gradient(135deg, var(--blue-dark), var(--green-dark));
      color: #fff;
    }

    .final-cta h2,
    .final-cta p {
      color: #fff;
    }

    .final-cta-box {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: center;
    }

    .footer {
      background: #0f172a;
      color: #cbd5e1;
      padding: 52px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(5, 1fr);
      gap: 24px;
    }

    .footer h3 {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 12px;
    }

    .footer p {
      color: #cbd5e1;
    }

    .footer a {
      display: block;
      color: #dbeafe;
      margin: 7px 0;
      font-size: .93rem;
    }

    .footer-bottom {
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .14);
      color: #94a3b8;
      font-size: .9rem;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1040px) {
      .hero-grid,
      .country-panel,
      .final-cta-box {
        grid-template-columns: 1fr;
      }

      .hero-card {
        max-width: 620px;
      }

      .grid-4,
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }

      .country-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 860px) {
      .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav-wrap {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(255, 255, 255, .98);
        border-bottom: 1px solid var(--line);
        padding: 16px 22px 20px;
        flex-direction: column;
        align-items: stretch;
      }

      .nav-wrap.is-open {
        display: flex;
      }

      .nav {
        flex-direction: column;
        align-items: stretch;
      }

      .nav a {
        padding: 8px 0;
      }

      .language-select {
        max-width: none;
      }

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

    @media (max-width: 640px) {
      .container {
        padding: 0 16px;
      }

      .hero-grid {
        padding: 34px 0;
      }

      .hero-copy {
        padding: 22px;
      }

      .hero-image img {
        height: 230px;
      }

      .mini-stats,
      .grid-2,
      .grid-3,
      .grid-4,
      .country-list,
      .check-list,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }

      .link-pill {
        width: 100%;
        justify-content: center;
      }

      .section {
        padding: 52px 0;
      }
    }