/* Testimonial Section Styles */

.testimonials {
  background: #fff8f8;
  padding: 60px 20px;
  border-radius: 16px;
  margin: 40px auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.testimonials h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 32px;
  color: #713274;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.testimonials h2 {
  grid-column: 1 / -1;
}
.testimonial {
  background: #fff;
  border-left: 4px solid #713274;
  padding: 24px 32px;
  border-radius: 12px;
  font-size: 1.08rem;
  color: #333;
  box-shadow: 0 2px 12px rgba(201,79,124,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  transition: box-shadow 0.2s;
}
.testimonial:hover {
  box-shadow: 0 6px 24px rgba(201,79,124,0.18);
  border-left-color: #713274;
}
.testimonial p {
  margin: 0;
  font-style: italic;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .testimonials {
    grid-template-columns: 1fr;
    padding: 30px 8px;
    gap: 18px;
  }
  .testimonial {
    padding: 18px 12px;
    min-height: 160px;
  }
}
