.testimonials-page {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1b1b1b;
}

.testimonials-section {
  padding: 60px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-content h3 {
  margin: 0 0 5px 0;
  color: #0b3c5d;
}

.testimonial-title {
  display: block;
  font-size: 0.9rem;
  color: #1d6fa5;
  margin-bottom: 10px;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

#loadMoreBtn {
  margin: 0 auto;
  display: inline-block;
  cursor: pointer;
}


/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
