  html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #181f3c;
    color: #f5f5f5;
    line-height: 1.7;
  }

  a { color: #ffd85a; }
  a:focus, button:focus {
    outline: 3px solid #ffd85a;
    outline-offset: 2px;
  }

  .skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    padding: 10px 14px;
    background-color: #ffd85a;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    border-radius: 10px;
  }
  .skip-link:focus { top: 10px; }

  header {
    background-color: #111735;
    border-bottom: 3px solid #2430a5;
  }

  .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .brand-name-full {
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.2px;
  }

  .brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-row img {
    height: 64px;
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 10px;
  }

  .tagline {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #d9ddff;
    font-size: 16px;
  }

  main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px;
  }

  .card {
    background-color: #222a52;
    border-radius: 14px;
    padding: 16px 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.35);
    margin: 12px 0;
  }

  h1 {
    margin: 0 0 8px 0;
    font-size: 26px;
  }

  h2 {
    margin: 18px 0 10px 0;
    font-size: 20px;
  }

  p {
    margin: 10px 0;
    font-size: 18px;
  }

  ul {
    margin: 10px 0 10px 22px;
    padding: 0;
    font-size: 18px;
  }

  li { margin: 8px 0; }

  .badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
  }

  .badge {
    background: #181f3c;
    border: 2px solid #ffd85a;
    color: #f5f5f5;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 16px;
  }

  .notice {
    background-color: #0f1738;
    border-left: 5px solid #ffd85a;
    padding: 12px 14px;
    border-radius: 12px;
    margin-top: 12px;
  }

  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }

  .btn {
    appearance: none;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
  }

  .btn-primary {
    background-color: #ffd85a;
    color: #111735;
  }
  .btn-primary:hover { filter: brightness(1.05); }

  .btn-secondary {
    background-color: #2430a5;
    color: #f5f5f5;
    border: 2px solid #ffd85a;
  }
  .btn-secondary:hover { filter: brightness(1.08); }

  .footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 16px 22px 16px;
    color: #cfd4ff;
    font-size: 15px;
  }

  @media (max-width: 700px) {
    .brand-row { justify-content: center; }
    .brand-name-full { font-size: 20px; }
    p, ul { font-size: 18px; }
    h1 { font-size: 24px; }
  }
