    /* Main testimonials section */
.testimonials-section,
.parent-testimonials {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.testimonials-section h2,
.parent-testimonials h2 {
  color: #e53333;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* Card grid layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}

/* Testimonial Card */
.card {
  background: #fff;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e53333;
}

.testimonial-info h3 {
  margin: 0 0 5px;
  color: #003b77;
  font-size: 1.15rem;
}

.exam-name {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
  font-weight: 600;
}

.testimonial-content .quote {
  font-style: italic;
  font-size: 1rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .testimonial-img {
    width: 50px;
    height: 50px;
  }
  .testimonial-info h3 {
    font-size: 1rem;
  }
  .testimonials-section h2,
  .parent-testimonials h2 {
    font-size: 1.6rem;
  }
}
