.testimonials-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #0d1b2a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f8fafc;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  color: #ffb400;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.testimonial-card span {
  color: #666;
  font-weight: 600;
}