.testimonials {
  padding: 4rem 1rem;
  background: #F9FAFB;
}
.testimonials .container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1F2937;
}
.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 640px) {
  .testimonial-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.testimonial {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.testimonial p {
  font-style: italic;
  color: #4B5563;
  margin-bottom: 1rem;
}
.testimonial h5 {
  font-weight: 600;
  color: #1F2937;
}
