.plans-container {
      font-family: 'Clash Display', sans-serif;
      display: flex;
      gap: 30px;
      margin: 50px 0;
      flex-wrap: wrap;
      justify-content: center;
    }

    .plan-card {
      background: #1f2233;
      border: 2px solid #333a50;
      border-radius: 16px;
      padding: 25px;
      width: 300px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .plan-card:hover {
      transform: translateY(-8px);
      border-color: #4ea8ff;
    }

    .popular {
      border-color: gold;
    }

    .plan-card h2 {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .badge {
        background-color: gold;
        color: #0f0f1a;
        font-weight: 600;
        font-size: 0.85rem;
        padding: 6px 12px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    }

    .price {
      font-size: 1.6rem;
      font-weight: bold;
      margin: 10px 0;
      color: #4ea8ff;
    }

    .features {
      font-size: 0.95rem;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .subscribe-button {
      font-family: 'Clash Display', sans-serif;
      background-color: #4ea8ff;
      color: #0f0f1a;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .subscribe-button:hover {
      background-color: #1a8ddc;
    }

    .disclaimer {
        font-family: 'Clash Display', sans-serif;
        max-width: 800px;
        font-size: 0.85rem;
        color: #999;
        padding: 20px;
        margin-bottom: 20px; /* Adjusted margin */
        position: relative;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: left;
    }

    ul.green-ticks {
      list-style: none;
      padding-left: 0;
    }
    ul.green-ticks li::before {
      content: "✔";
      color: green;
      margin-right: 8px;
    }

    @media (max-width: 768px) {
      .plan-card {
        width: 90%;
      }
    }