    :root {
      --bg: #fffaf4;
      --paper: #ffffff;
      --blue: #143f5b;
      --orange: #a9470f;
      --text: #18222c;
      --muted: #596775;
      --line: #e6d8c7;
      --shadow: 0 18px 45px rgba(20, 63, 91, 0.13);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--bg);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      line-height: 1.65;
    }

    a {
      color: var(--blue);
      font-weight: 800;
    }

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

    header,
    footer {
      padding: 24px 0;
      background: var(--paper);
      border-bottom: 2px solid var(--line);
    }

    footer {
      border-top: 2px solid var(--line);
      border-bottom: 0;
    }

    main {
      padding: clamp(46px, 8vw, 84px) 0;
    }

    .card {
      padding: clamp(26px, 5vw, 42px);
      background: var(--paper);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    h1 {
      margin: 0 0 22px;
      color: var(--blue);
      font-size: clamp(40px, 6vw, 62px);
      line-height: 1.08;
    }

    h2 {
      margin: 30px 0 10px;
      color: var(--blue);
      font-size: 30px;
    }

    p {
      margin-top: 0;
    }

    .muted {
      color: var(--muted);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 14px 22px;
      color: #ffffff;
      background: var(--orange);
      border-radius: var(--radius);
      text-decoration: none;
      font-weight: 900;
    }

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

      h1 {
        font-size: 38px;
      }

      .button {
        width: 100%;
      }
    }
