 .choose-plan-title {
      background-color: #4f46e5;
      border-radius: 30px;
    }

    .choose-plan-title p {
      padding-inline: 20%;
      font-size: 22px;
    }

    .billing-toggle {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 22px;
      font-weight: 500;
    }

    .billing-label {
      margin: 0;
    }

    .form-switch .form-check-input {
      width: 2.5em;
      height: 1.25em;
      background-color: #6366f1;
      border-color: #6366f1;
    }

    .form-switch .form-check-input:checked {
      background-color: #6366f1;
      border-color: #6366f1;
    }

    .savings-tag {
      background: #ffe600;
      color: #000;
      font-weight: bold;
      font-size: 18px;
      padding: 0.25rem 0.75rem;
      margin-left: 0.5rem;
      clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 10px 100%, 0% 50%);
    }

    .choose-plan-card h2 {
      font-size: 52px;
    }

    .choose-plan-card p {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .choose-plan-btn {
      margin-top: 30%;
    }

    .choose-plan-card .card {
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      border-radius: 30px;
      cursor: pointer;
    }

    .choose-plan-card .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    }

    .choose-plan-card .card-body {
      padding-top: 20%;
      padding-bottom: 20%;
      background-color: #f8fafc;
      border-radius: 30px;
    }

    .choose-plan-btn .btn {
      font-size: 18px;
      padding-block: 8px;
      padding-inline: 25px;
    }

    .choose-plan-card .card.active-card .card-body {
      background-color: #fffbeb !important;
      border: 4px solid #fde047;
    }

    .choose-plan-card .card.active-card .btn {
      background-color: #fde047 !important;
      border: none !important;
    }

    /* Table Styling */
    .compare-features-table table {
      width: 100%;
      border-collapse: collapse;
    }

    .compare-features-table th,
    .compare-features-table td {
      padding: 20px !important;
      /* Enforce padding */
      text-align: center;
      vertical-align: middle;
      font-size: 16px;
    }

    .about-us-section {
      background-color: #fde047;
      padding: 5%;
      border-radius: 30px;
    }

    /* Toggle icon styling */

    .accordion-button:not(.collapsed)::after {
      content: '×';
      transform: rotate(0deg);
      background-image: none;
    }

    .accordion-button::after {
      content: '+';
      font-size: 24px;
      font-weight: bold;
      transition: transform 0.3s ease;
      background-image: none;
      display: flex;
      align-items: center;
    }



    /* Optional: Clean button look */
    .accordion-button {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 18px;
    }

    .accordion-button {
      background-color: #F8FAFC;

    }

    .accordion-item {
      border: none;
    }

    @media only screen and (max-width : 767px) {
      .choose-plan-title p {
        padding: 0;
      }

      .choose-plan-title p {
        padding-inline: 5%;
        font-size: 18px;
      }

      .choose-plan-card h2 {
        font-size: 36px;
      }

      .accordion-button {
        font-size: 1rem;
        padding: 1rem;
      }
      .billing-toggle  label,.billing-toggle  span{
      font-size: 16px;}

    }