.pricing-section {
    min-height: 100vh;
   
}

.pricing-content {
      background: #f8f8fb;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      flex-direction: column;
      padding: 40px 20px;
}

 h2 {
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 8px;
    }

    p.subtitle {
      text-align: center;
      color: #ff4d6d;
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* Toggle Switch */
    .toggle-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-bottom: 40px;
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 30px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: .4s;
      border-radius: 34px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 22px;
      width: 22px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background-color: #ff4d6d;
    }

    input:checked + .slider:before {
      transform: translateX(30px);
    }

    /* Pricing Cards */
    .pricing-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }

    .card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      width: 280px;
      padding: 25px;
      transition: 0.3s;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card.highlight {
      background: #ff4d6d;
      color: white;
      transform: scale(1.05);
    }

    .card h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .card span.small {
      font-size: 13px;
      color: #777;
    }

    .highlight span.small {
      color: #fddde0;
    }

    .price {
      font-size: 36px;
      font-weight: 700;
      margin: 15px 0;
    }

    .highlight .price {
      color: white;
    }

    .discount {
      background: #eee;
      display: inline-block;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      color: #555;
      margin-bottom: 15px;
    }

    .highlight .discount {
      background: #ff7392;
      color: white;
    }

    .ul {
      list-style: none;
      margin-top: 10px;
      margin-bottom: 20px;
      text-align: left;
      color: #555;
    }

    .ul .li {
      margin: 8px 0;
      position: relative;
      padding-left: 20px;
    }

    .ul .li::before {
      content: "✔";
      color: #ff4d6d;
      position: absolute;
      left: 0;
      top: 0;
    }

    .highlight ul li::before {
      color: white;
    }

    .btn {
      background: black;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover {
      background: #222;
    }

    @media (max-width: 900px) {
      .card {
        width: 90%;
      }
    }