/* Background */
body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #240843, #5A2D82, #7D4BB1);
      color: #fff;
      line-height: 1.6;
    }

    /* Section */
    .pricing-section {
      max-width: 1200px;
      margin: auto;
      padding: 70px 20px;
      text-align: center;
    }

    .pricing-header h4 {
      color: #d2c3e8;
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .pricing-header h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #fff;
    }

    /* Pricing Grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
      gap: 30px;
      justify-content: center;
    }

    /* Pricing Card */
    .pricing-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 35px 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
      transition: 0.3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.6);
    }

    .pricing-card h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #fff;
    }

    .pricing-card .desc {
      font-size: 0.95rem;
      color: #cdbbe7;
      margin-bottom: 20px;
    }

    .price {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      margin: 15px 0;
    }

    .price span {
      font-size: 1rem;
      color: #d2c3e8;
    }

    .pricing-card h4 {
      margin: 20px 0 10px;
      font-size: 1rem;
      font-weight: 500;
      color: #d6ccec;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 25px;
    }

    ul li {
      margin: 8px 0;
      font-size: 0.95rem;
      color: #e6dafc;
    }

    /* Button */
    button {
      background: linear-gradient(90deg, #5A2D82, #7D4BB1);
      color: white;
      border: 2px solid #fff;
      padding: 12px 25px;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      width: 100%;
    }

    button:hover {
      opacity: 0.9;
      border-color: #e6dafc;
    }

    /* Highlight Card */
    .highlight {
      border: 2px solid #7D4BB1;
      background: rgba(90, 45, 130, 0.15);
      transform: scale(1.05);
      margin-left: 10px;
    }

    /* Footer note */
    .note {
      font-size: 0.9rem;
      margin-top: 50px;
      color: #d2c3e8;
    }

    .note a {
      color: #7D4BB1;
      text-decoration: none;
    }

    /* Responsive Media Queries */
    @media (max-width: 992px) {
      .pricing-header h2 {
        font-size: 1.8rem;
      }
      .pricing-card {
        padding: 25px 20px;
      }
      .price {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 600px) {
      .pricing-header h2 {
        font-size: 1.6rem;
      }
      .pricing-header h4 {
        font-size: 0.9rem;
      }
      .pricing-grid {
        grid-template-columns: 1fr; /* Stack cards */
      }
      .pricing-card {
        padding: 20px 15px;
      }
      .price {
        font-size: 1.6rem;
      }
      button {
        padding: 10px 18px;
        font-size: 0.9rem;
      }
    }
