/* General reset */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;

}




/* Price Section */


/* another section------ */
/* Global Styles */


h1, h2 {
  margin: 0;
  padding: 0;
}

/* Section Styles */

.section-title {
  margin: 4rem;
  font-size: 3rem;
  text-align: center;
}

.pricing-section {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  width: 25%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.price {
  font-size: 30px;
  font-weight: bold;
  color: #231482;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.features li {
  font-size: 16px;
  color: #555;
  margin: 8px 0;
}

.btn {
  background-color: #231482;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #155ab2;
}

/* Featured Card */
.featured {
  background-color: #ffcb00;
  border: 2px solid #ffb800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.featured .card-title {
  color: #fff;
}

.featured .price {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .pricing-cards {
      gap: 20px;
  }
  .card{
    width: 42%;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
      flex-direction: column;
      gap: 20px;
  }

  .card {
      
      padding: 20px;
      width: 100%;
  }

  .pricing-section {
      padding: 20px;
  }
}

@media (max-width: 480px) {
  .card {
      
      padding: 15px;
  }

  .price {
      font-size: 24px;
  }

  .btn {
      font-size: 14px;
  }
}










footer .footer-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #120a45;
  color: azure;
 
  gap: 2rem;
}

footer .footer-con .footer-content {
  padding-top: 2rem;

}

footer .footer-con .footer-content h2 {
  color: #fff;
}

footer .footer-con .footer-content h4 {
  font-size: 1rem;
}


.contact-us {
  margin: 6rem;
  padding: 4rem;
  border-radius: 40px;
  background-color: whitesmoke;

  box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.2), 0 8px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact-us .contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.contact-us .contact .contact-content {
  margin: 10px;
  padding: 20px;
  flex: 1 1 200px;
}

.contact-us .contact .contact-content h1 {
  font-weight: bold;
}

.contact-us .contact .contact-content h2 {
  font-weight: bold;
}

.contact-us .contact .contact-content h3 {
  font-weight: bold;
}



/* Media Queries for responsiveness */
@media screen and (max-width: 1024px) {
  .price-card {
    width: 48%;
  }

  .price-section {

    margin: 9rem;


  }

  .contact-us {
    margin: 2rem 0 2rem 0;
    padding: 2rem;

  }



}

@media screen and (max-width: 780px) {

  .price-section {
    margin: 4rem;
  }


  .price-card {
    width: 100%;
    margin-bottom: 20px;

  }




}

@media screen and (max-width: 480px) {
  .price-card {
    width: 100%;
  }
}