/* Pricing Section */
    .pricing_section {
      padding: 80px 0;
      background: #f7f7f7;
    }

    .pricing_heading {
      text-align: center;
      margin-bottom: 50px;
    }

    .pricing_heading h2 {
      font-size: 42px;
      font-weight: 700;
      color: #05055f;
    }

    .pricing_wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .pricing_card {
      font-family: 'Poppins', sans-serif !important;
      background: #fff;
      border: 1px solid #dcdcff;
      border-radius: 24px;
      overflow: hidden;
      transition: 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .pricing_card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .pricing_header {
      padding: 35px 20px;
      text-align: center;
    }

    .bronze {
      background: #b28767;
      color: #fff;
    }

    .silver {
      background: #efefef;
      color: #05055f;
    }

    .gold {
      background: #f4eb3c;
      color: #05055f;
    }

    .platinum {
      background: #efefef;
      color: #05055f;
    }

    .pricing_header h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .pricing_header p {
      font-size: 18px;
      line-height: 1.4;
      margin: 0;
    }

    .pricing_body {
      padding: 35px 25px;
      text-align: center;
    }

    .price {
      font-size: 2rem;
      font-weight: 700;
      color: #05055f;
      line-height: 1;
    }

    .price span {
      font-size: 22px;
      vertical-align: top;
    }

    .month {
      color: #12c7c7;
      margin-bottom: 25px;
    }

    .commitment {
      margin-bottom: 25px;
      color: #05055f;
    }

    .feature {
      padding: 18px 0;
      border-top: 1px solid #e8e8e8;
      color: #05055f;
      font-size: 18px;
      line-height: 1.5;
    }

    .pricing_btn {
      margin-top: 15px;
    }

    .pricing_btn a {
      display: inline-block;
      padding: 14px 38px;
      background: #12c7c7;
      color: #05055f;
      border-radius: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .pricing_btn a:hover {
      background: #05055f;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .pricing_wrapper {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .pricing_section {
        padding: 60px 0;
      }

      .pricing_wrapper {
        grid-template-columns: 1fr;
      }

      .pricing_heading h2 {
        font-size: 32px;
      }

      .pricing_header h3 {
        font-size: 34px;
      }

      .price {
        font-size: 48px;
      }
    }