.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 250;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  transition:.3s;
  text-align: center;
}

.card:hover{
  transform:translateY(-8px);
}

.card h3 {
  margin: 10px 0 5px;
}

.card p {
  padding: 0 10px 15px;
  font-size: 14px;
  color: #555;
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card-body{
  padding:20px;
}

.box {
  /**border: 2px solid #ddd;
  border-radius: 10px;
   background: #fff; **/
  padding: 20px;
  max-width: 900px;
  margin: 40px auto;
}

/**section {
  padding: 40px 20px;
}**/

.accordion {
  max-width: 800px;
  margin: auto;
}

.accordion-item {
  border-bottom: 1px solid #994fbe;
  border-radius: 6px;
  margin-bottom: 10px; 
  overflow: hidden;
  background: #fff; 
}

.accordion-header {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: #f7f7f7;
  font-size: 16px;
  font-weight: bold;
  border: none;
  /**outline: none;  **/ 
  cursor: pointer;
  color: #994fbe;
  transition: 0.3s; 
 
}

.accordion-header:hover {
  background: #eaeaea;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #fff;
  transition: max-height 0.4s ease;
}

/*.accordion-content p {
  margin-bottom: 10px;
  line-height: 1.5;
} */

.accordion-content p,
.accordion-content ul {
  margin: 15px 0;
  text-align: justify;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 15px;
}

/*h2{
  text-align: center;
  color: #994fbe;
} */

h2{
  text-align: center;
  color: #994fbe;
  font-size: 28px;
}

.accordion-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 10px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}

.accordion-header::after {
  content: "+";
  float: right;
}

.accordion-item.active .accordion-header::after {
  content: "-";
}

.accordion-content p {
  text-align: justify;
  font-size: 15px;
}

/*.team-section{
  background:linear-gradient(90deg,#3c1053,#ad5389);
  color:#fff;
}

.team-member{
  background:#fff;
  color:#000;
  padding:20px;
  border-radius:12px;
  text-align:center;
}

.team-member img{
  width:100%;
  border-radius:10px;
}

.testimonial{
  background:#fff;
  padding:25px;
  border-radius:10px;
} **/

/** .box {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
}  **/

.contact-details {
  margin-bottom: 20px;
}

.map-container iframe {
  border-radius: 8px;
}

