.wrap {
      max-width: 800px;
      margin: 0 auto;
      padding: 48px 24px;
      text-align: center;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: -10px;
    }

    p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .card {
      background: white;
      border-radius: 14px;
      padding: 32px 24px 100px 24px;
      margin-top: -60px;
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 24px;
    }

    .btn {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: #222;
      color: white;
    }

    .btn-primary:hover {
      opacity: 0.9;
    }

    .btn-secondary {
      background: #e9e4d8;
      color: #222;
    }

    .btn-secondary:hover {
      background: #ddd6c6;
    }

    .small {
      margin-top: 20px;
      font-size: 0.9rem;
      color: #666;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 1.65rem;
      }

      .btn {
        width: 100%;
        box-sizing: border-box;
      }
    }