* {
    box-sizing: border-box;
  }

  :root {
    --brand: #0b2a5b;
    --brandDark: #071d3f;
    --accent: #d4a62a;
    --accentDark: #b68818;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f6f7fb;
    --card: #fff;
    --border: #e5e7eb;
  }

  .sitebar {
    background: #fff;
    border-bottom: 1px solid var(--border);
  }

  .sitebar .inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .2px;
    text-decoration: none;
    color: var(--text);
  }

  .logoMark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #f3d37a);
    box-shadow: 0 8px 18px rgba(212, 166, 42, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }

  .nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    margin-left: 14px;
  }

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

* { box-sizing: border-box; }
    body { font-family: Arial, sans-serif; margin: 0; background: #f6f7fb; color: #0f172a; }

    .wrap { max-width: 760px; margin: 42px auto; padding: 0 16px; }
    .card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
      padding: 26px;
    }
    .top { text-align: center; margin-bottom: 18px; }
    .top h1 { font-size: 26px; margin: 0 0 8px; color: #0b2a5b; }
    .top p { margin: 0; color: #64748b; line-height: 1.35; }

    .progress { display:flex; gap:8px; margin: 18px 0 22px; }
    .bar { height: 8px; border-radius: 999px; background: #eef2ff; flex: 1; overflow: hidden; border: 1px solid #e5e7eb; }
    .bar > div { height: 100%; background: linear-gradient(90deg, #d4a62a, #f1d27b); width: 0%; transition: width .25s ease; }

    .step { display: none; }
    .step.active { display: block; }
    .step h2 { font-size: 20px; margin: 0 0 14px; text-align:center; }

    .options { display: grid; gap: 12px; }
    .opt {
      width: 100%;
      padding: 18px 14px;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      background: #fff;
      cursor: pointer;
      font-size: 18px;
      transition: transform .04s ease, border-color .12s ease, box-shadow .12s ease;
      text-align: left;
    }
    .opt:hover { border-color: rgba(212,166,42,.45); box-shadow: 0 10px 20px rgba(212,166,42,.12); }
    .opt:active { transform: scale(0.99); }
    .opt.selected { border-color: #d4a62a; box-shadow: 0 0 0 2px rgba(212,166,42,.2); background: #fffcf5; }
    .opt strong { display:block; font-size: 18px; color: #0b2a5b; }
    .opt span { display:block; margin-top: 6px; color: #64748b; font-size: 14px; }

    .grid2 { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media (max-width: 560px){ .grid2 { grid-template-columns: 1fr; } }

    .field { margin-top: 10px; text-align:left; }
    .field label { display:block; font-size: 13px; color: #64748b; margin: 0 0 6px; }
    .field input {
      width: 100%;
      padding: 14px 12px;
      border-radius: 10px;
      border: 1px solid #e5e7eb;
      font-size: 16px;
      outline: none;
      background: #fff;
    }
    .field input:focus { border-color: rgba(212,166,42,.65); box-shadow: 0 0 0 4px rgba(212,166,42,.18); }

    .navBtns { display:flex; gap: 10px; justify-content: space-between; margin-top: 18px; flex-wrap: wrap; }
    .btn {
      border: none;
      border-radius: 10px;
      padding: 14px 18px;
      font-size: 16px;
      cursor: pointer;
    }
    .btn-primary { background: linear-gradient(180deg, #d4a62a, #b68818); color: #1f2937; font-weight: 800; }
    .btn-primary:hover { filter: brightness(.98); }
    .btn-ghost { background: #f3f4f6; color: #111; border: 1px solid #e5e7eb; }
    .btn[disabled] { opacity: .55; cursor: not-allowed; }

    .fineprint {
      margin-top: 14px;
      font-size: 12px;
      color: #64748b;
      line-height: 1.35;
      text-align:center;
    }
    .fineprint a { color: #0b2a5b; text-decoration: none; }
    .fineprint a:hover { text-decoration: underline; }

    .error {
      margin-top: 12px;
      margin-bottom: 24px;
      background: #fff5f5;
      border: 1px solid #ffd1d1;
      color: #7f1d1d;
      border-radius: 10px;
      padding: 12px;
      display:none;
      text-align:left;
    }
    .footerLinks{ margin-top:18px; text-align:center; font-size:12px; color:#64748b; }
    .footerLinks a{ color: #0b2a5b; text-decoration:none; }
    .footerLinks a:hover{ text-decoration:underline; }
/* Thank You Page Styles */
.wrap .card h1 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 28px;
  color: #0b2a5b;
}

.wrap .card p {
  text-align: center;
  margin: 0 0 12px;
  color: #64748b;
  line-height: 1.6;
}

.wrap .card .btn {
  display: block;
  width: max-content;
  margin: 24px auto 0;
}

.wrap .card .small {
  display: block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.wrap .card .small a {
  color: #0b2a5b;
  text-decoration: none;
}

.wrap .card .small a:hover {
  text-decoration: underline;
}
