
    h1 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .pricing-container {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 0 auto;

      margin-bottom: 100px;
    }

    .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 2rem;
      flex: 1 1 300px;
      max-width: 450px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      position: relative;
    }

    .card.highlight {
      border: 2px solid #f6c23e;
    }

    .badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: #f6c23e;
      color: #000;
      font-weight: bold;
      padding: 0.25rem 0.5rem;
      border-radius: 6px;
      font-size: 0.8rem;
    }

    .card h2 {
      margin-top: 0;
      font-size: 1.4rem;
    }

    .subtitle {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
    }

    ul li {
      margin-bottom: 0.5rem;
      padding-left: 1.5rem;
      position: relative;
    }

    ul li::before {
      content: "✔";
      color: green;
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    .card.try ul li::before {
      content: "➤";
      color: #007bff;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin: 1rem 0;
    }

    .button {
      display: inline-block;
      text-align: center;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      width: 90%;
      transition: background 0.2s ease;
    }

    .button.bundle {
      background: #28a745;
      color: white;
    }

    .button.bundle:hover {
      background: #218838;
    }

    .button.single {
      background: #e9ecef;
      color: #222;
    }

    .button.single:hover {
      background: #d6d8db;
    }

    .note {
      margin-top: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: #555;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }