<style>
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 20px;
      background-color: #fff;
      text-align: center;
    }

    h1 {
      margin-bottom: 30px;
    }

    table {
      width: 90%;
      max-width: 800px;
      margin: 0 auto 30px;
      border-collapse: collapse;
      font-size: 16px;
    }

    th, td {
      padding: 15px;
      border-bottom: 1px solid #ccc;
    }

    th {
      background-color: #f5f5f5;
      font-weight: bold;
    }

    .check {
      color: green;
      font-size: 20px;
    }

    .cross {
      color: red;
      font-size: 20px;
    }

    .price-row {
      font-weight: bold;
      font-size: 18px;
    }

    .signup-buttons {
      display: flex;
      justify-content: center;
      gap: 100px;
    }

    .signup-buttons .btn {
      background-color: #e74c3c;
      color: white;
      padding: 10px 25px;
      text-decoration: none;
      border-radius: 6px;
      font-size: 16px;
    }

    @media (max-width: 600px) {
      table {
        font-size: 14px;
      }

      .signup-buttons {
        flex-direction: column;
        gap: 20px;
      }
    }
  </style>
