.testimonials {
  padding: 120px 20px 80px;
  text-align: center;
  background: #fff;
}
.testimonials h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #31c3da;
}
.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #f1f1f1;
  padding: 30px 20px;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 15px;
}
.testimonial-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #31c3da;
}
.testimonial-card span {
  font-size: 14px;
  color: #777;
}
@media(max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
}
