.pricing-section {
    background: linear-gradient(135deg, #1c98a5, #3066be);
    padding: 80px 0;
    color: #fff;
  }
  
  .pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .pricing-card {
      background-color: rgb(157 224 255 / 0.9);
      border: none;
      border-radius: 15px;
      transition: transform 0.3s ease;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
    }
    
  .pricing-card.featured {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #fd8402;
  }
  
  .card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fd8402;
  }
  
  .price {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .feature-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fd8402;
  }
  
  .exclusive-offer1 {
    background-color: rgba(198, 230, 247, 0.8);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
  }

  .exclusive-offer2 {
    background-color: rgba(253, 132, 2, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
  }

  .buy-button-placeholder {
    height: 50px;
    background-color: #fd8402;
    border-radius: 25px;
    margin-top: 20px;
  }
  
  @media (max-width: 991px) {
    .pricing-card {
      margin-bottom: 30px;
    }
  }

  .limited-offer {
    font-weight: bold;
    color: #fd8402;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
  }
  
  .limited-offer .shine {
    display: inline-block;
    position: relative;
  }
  
  .limited-offer .shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.05) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite linear;
  }
  
  @keyframes shine {
    0% {
      transform: translateX(-100%) rotate(30deg);
    }
    100% {
      transform: translateX(100%) rotate(30deg);
    }
  }