    :root {
      --paper: #fffdf8;
      --paper-soft: #f4eadb;
      --text: #1f2933;
      --muted: #5d6875;
      --blue: #173f56;
      --blue-2: #275c7a;
      --orange: #a9470f;
      --green: #5f8f63;
      --line: #decfbb;
      --radius: 8px;
      --shadow: 0 18px 40px rgba(23, 63, 86, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      color: var(--text);
      background: var(--paper);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    header {
      border-bottom: 1px solid var(--line);
      background: rgba(255, 253, 248, 0.96);
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--blue);
      font-weight: 900;
    }

    .brand-logo {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      object-fit: contain;
      background: white;
      box-shadow: var(--shadow);
    }

    .brand-name {
      display: block;
      font-size: 28px;
      line-height: 1.1;
    }

    .brand-subline {
      display: block;
      color: var(--muted);
      font-size: 16px;
      font-weight: 700;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 15px 24px;
      border: 0;
      border-radius: var(--radius);
      background: var(--orange);
      color: #fff;
      font-size: 20px;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 12px 24px rgba(232, 125, 47, 0.2);
    }

    .button.secondary {
      background: #fff;
      color: var(--blue);
      border: 2px solid var(--blue-2);
      box-shadow: none;
    }

    main {
      padding: clamp(48px, 7vw, 84px) 0;
    }

    .layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
      gap: clamp(30px, 5vw, 58px);
      align-items: start;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      padding: 8px 14px;
      border-radius: var(--radius);
      background: #e8f1f5;
      color: var(--blue);
      font-size: 17px;
      font-weight: 900;
    }

    h1 {
      margin-bottom: 18px;
      color: var(--blue);
      font-size: clamp(42px, 7vw, 68px);
      line-height: 1.05;
    }

    h2 {
      color: var(--blue);
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.14;
      margin-bottom: 14px;
    }

    p {
      margin-bottom: 18px;
    }

    .lead {
      max-width: 760px;
      color: var(--muted);
      font-size: 24px;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 24px;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
      padding: clamp(24px, 4vw, 34px);
    }

    .gift-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 36px;
    }

    .voucher-preview {
      margin-top: 30px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .voucher-preview img {
      display: block;
      width: 100%;
      height: auto;
    }

    .voucher-preview figcaption {
      padding: 14px 18px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
    }

    .gift-option {
      border: 1px solid var(--line);
      border-left: 6px solid var(--orange);
      border-radius: var(--radius);
      background: #fff;
      padding: 22px;
    }

    .gift-option strong {
      display: block;
      color: var(--blue);
      font-size: 23px;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 34px;
      font-weight: 800;
    }

    .check-list li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      color: var(--green);
      font-weight: 900;
    }

    .note {
      margin-top: 26px;
      padding: 18px;
      border-left: 6px solid var(--green);
      background: #f4fbf4;
      color: #31433a;
      font-weight: 700;
    }

    form {
      display: grid;
      gap: 16px;
      margin-top: 20px;
    }

    label {
      display: grid;
      gap: 7px;
      color: var(--blue);
      font-weight: 900;
    }

    input,
    textarea,
    select {
      width: 100%;
      min-height: 54px;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      padding: 12px 14px;
      font: inherit;
      background: #fffdf8;
    }

    textarea {
      resize: vertical;
    }

    .privacy-note {
      color: var(--muted);
      font-size: 16px;
    }

    .privacy-note a,
    footer a {
      color: var(--blue);
      text-decoration: underline;
      font-weight: 800;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 28px 0;
      background: var(--blue);
      color: #fff;
    }

    footer .container {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    footer a {
      color: #fff;
    }

    @media (max-width: 900px) {
      .layout,
      .gift-options {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 560px) {
      body {
        font-size: 19px;
      }

      .button {
        width: 100%;
      }
    }
