
    :root {
      color-scheme: light;
      color: #03163b;
      background: #fff;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 20px;
      background: #fff;
      color: #03163b;
      min-height: 100vh;
      display: flex;
      justify-content: center;
    }

    .page {
      width: min(100%, 700px);
    }

    .logo img {
    max-width: 150px;
    margin: 10px 30px;
      display: block;
      object-fit: contain;
    }

    .container {
      margin-top: 28px;
      padding: 28px 24px;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
    }

    .headline {
    font-size: clamp(1.35rem, 3vw, 2.4rem);
    line-height: 1.15;
      margin: 0 0 10px;
      font-weight: 700;
    }

    .subheadline {
      margin: 0 0 24px;
      color: #444;
      font-size: 1rem;
      line-height: 1.7;
    }

    .question-box {
      /* margin-top: 20px; */
    }

    .question-title {
      margin: 0 0 18px;
      font-size: 1.2rem;
      font-weight: 600;
      color: #03163b;
    }

    .answers {
      display: grid;
      gap: 12px;
    }

    .answer-btn,
    .nav-btn,
    .contact-btn {
      width: 100%;
      border: 1px solid #03163b;
      background: transparent;
      color: #03163b;
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 150ms ease, color 150ms ease, transform 150ms ease, border-color 150ms ease;
      text-align: left;
    }

    @media (hover: hover) {
      .answer-btn:hover,
      .nav-btn:hover,
      .contact-btn:hover {
        background: #03163b;
        color: #fff;
        border-color: #03163b;
        outline: none;
        transform: translateY(-1px);
      }
    }

    .answer-btn:active,
    .nav-btn:active,
    .contact-btn:active {
      background: #03163b;
      color: #fff;
      border-color: #03163b;
      outline: none;
    }

    .nav-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 22px;
    }

    .nav-btn {
      width: auto;
      padding: 10px 14px;
      font-size: 0.95rem;
      border-radius: 999px;
      min-width: 120px;
    }

    .nav-btn[disabled] {
      opacity: 0.35;
      cursor: not-allowed;
    }

    .summary {
      display: none;
      /* margin-top: 24px; */
    }

    .summary.visible {
      display: block;
    }

    .summary p {
      margin: 0 0 20px;
      font-size: 1rem;
      line-height: 1.7;
      color: #03163b;
    }

    .contact-btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      border-width: 2px;
      border-color: #03163b;
      text-decoration: none;
      min-height: 54px;
    }

    .footer {
      margin-top: 18px;
      font-size: 0.88rem;
      color: #666;
      line-height: 1.6;
      /* text-align: center; */
      white-space: pre-line;
    padding: 0 24px;
    }

    .input-wrapper {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .text-input {
      width: 100%;
      border: 1px solid #03163b;
      background: transparent;
      color: #03163b;
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 1rem;
      font-family: inherit;
      outline: none;
      transition: border-color 150ms ease, box-shadow 150ms ease;
    }

    .text-input::placeholder {
      color: #aab0be;
    }

    .text-input:focus {
      border-color: #03163b;
      box-shadow: 0 0 0 3px rgba(3, 22, 59, 0.08);
    }

    .next-btn {
      text-align: center;
    }

    .input-error {
      display: block;
      font-size: 0.85rem;
      color: #c0392b;
      /* min-height: 1.2em; */
    }

    .text-input.input-invalid {
      border-color: #c0392b;
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
    }

    @media (max-width: 520px) {
      body {
        padding: 16px;
      }
    }