/* Container for the entire pricing page */
.pricing_pricingContainer__LYHIP {
    text-align: center;
    background-color: white; /* White background */
    padding: 120px 20px;
    font-family: 'DM Sans', sans-serif;    
    position: relative; /* Position for wave separator */
    
  }

  /* pricing.module.css */

.pricing_heading__z2XER {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px #989595;
  line-height: 1;
}

.pricing_subtext__vAQdT {
  text-align: center;
  line-height: 0.8;
}

  
  /* Wave Separator */

  
  /* Header section for the title */
  .pricing_headerSection__folsn {
    margin-bottom: 40px;
  }
  
  .pricing_headerSection__folsn h1 {
    font-family: 'DM Serif Display';
    font-size: 2.5rem;
    color: rgb(110,58,129);
    font-weight: bold;
    text-shadow: 2px 2px 4px #989595;
    padding: 20px;
  }
  
  .pricing_highlightText___g5Mp {
    font-family: 'DM Serif Display';
    color: rgb(240,125,82);
    text-shadow: 2px 2px 4px #989595;
  }
  
  .pricing_headerSection__folsn p {
    font-size: 1.8rem;
    color: rgb(110,58,129);
    padding: 20px;
  }
  
  /* Pricing cards container */
  .pricing_pricingCards__sK_UV {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 2; /* Place above wave */
    position: relative;
  }
  
  /* Individual card */
  .pricing_card__YA0bF {
    background-color: white;
    border: 2px solid #e5d9f2;
    border-radius: 15px;

    width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
  
  }

  .pricing_cardHead__ZD_7q{
    padding: 20px;
    background-color: #f9f5ff;
    border-bottom: 2px outset ;
    border-radius: 15px 15px 0px 0px;
    height: 280px;

  }

  .pricing_card__YA0bF:hover {
    transform: translateY(-5px);
  }
  
  .pricing_card__YA0bF h2 {
    font-size: 1.5rem;
    color:  rgb(110,58,129);
    margin-bottom: 10px;
  }
  
  .pricing_card__YA0bF h3 {
    font-size: 1.8rem;
    color:  rgb(110,58,129);
    margin: 10px 0;
  }
  
  .pricing_card__YA0bF p {
    font-size: 1rem;
    color: rgb(110,58,129);
    margin: 10px 0;
  }
  
  /* Features section */
  .pricing_features__Tjn_i {
    margin-top: 15px;
    padding: 20px;
    
  }
  
  .pricing_features__Tjn_i ul {
    list-style: none;
    padding: 0;
  }
  
  .pricing_features__Tjn_i li {
    font-size: 0.9rem;
    margin: 5px 0;
  }
  
  /* CTA Button */
  .pricing_ctaButton__YAKE_ {
    background-color: rgb(110,58,129);
    color: rgb(216,202,240);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .pricing_ctaButton__YAKE_:hover {
    background-color: rgb(216,202,240); /* Slightly lighter purple */
    color: rgb(110,58,129);
    transform: scale(1.05); /* Slight increase in size */
    box-shadow: 0px 4px 10px rgba(110, 58, 129, 0.3); /* Soft shadow effect */  
  }
  
  /* Highlighted Card (Pro Tier) */
  .pricing_highlightedCard__K7JbM {
    border: 2px solid #fab28e;
    position: relative;
  }
  
  .pricing_star__hdwak {
    color: #ff9966;
    font-size: 1.2rem;
    margin-left: 5px;
  }
  

  @media (max-width: 768px) {
    .pricing_highlightText___g5Mp{

    }
  }
  /* For phones (480px and smaller) */
  @media (max-width: 480px) {
    .pricing_highlightText___g5Mp{
      
    }
  }
  
