.cards-section {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 150px;
    padding: 150px 40px 40px 40px;
    flex-wrap: wrap;
  }
  
  .card {
    position: relative;
    background-color: #f9f9f9;
    border-radius: 16px;
    width: 340px; 
    min-height: 540px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-shrink: 0;
    /* transition: transform 0.3s ease; */
  }

  .card:last-child{
    margin-bottom: 0px;
  }
  
  /* .card:hover {
    transform: translateY(-10px); 
  } */
  
  .card-image {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    /* transform: scaleX(-1) */
  }
  
  .card-title {
    font-size: 1.2rem;
    margin-top: 15px;
  }
  
  .CTA{
    font-family: 'fontMedium', 'sans-serif';
    padding: 15px 30px;
    font-weight: 600;
    background-color: transparent;
    background-image: linear-gradient(303deg, #ef9021 0%, #ef9021 100%);
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    border: none;
    color: white;
    margin: 30px 0px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .CTA::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
    background-size: 10px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .CTA:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(239, 144, 33, 0.6);
  }
  
  .CTA:hover::after {
    opacity: 1;
  }

  .headerCard{
    background-color: #ef9021;
    height: 120px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 20px;
  }

  
  .containerCard{
    padding: 10px;
  }

  .price {
    font-family: 'fontWeight', 'sans-serif' !important;
    font-size: clamp(32px, 3vw, 58px);
  }

  .list{
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .list li{
    color: #004AB3;
    display: flex;
    gap: 10px;
    padding: 14px 0px;
    border-bottom: 1px solid #ccc; 
  }

  .list li:last-child {
    border-bottom: none;
  }
  
  @media (max-width: 1500px) {
    .card {
      margin-bottom: 130px;
    }
  }


  @media (max-width: 784px) {
    .cards-section {
        justify-content: center;
    }
    /* .card {
      width: 48%;
    } */
  }
  
 /*  @media (max-width: 480px) {
    .card {
      width: 100%; 
    }
  } */
  
  @media (max-width: 390px) {
    .card {
        width: 100%; 
      }
    .cards-section {
      padding: 150px 10px 40px 10px;
    }
  }
  