/* === Testimonials Section (Bright) === */
.testimonials {
  background: #f7f5e7;   /* parchment background */
  color: #0b3d0b;
  padding: 5rem 1.5rem;
}

.testimonials .container {
  max-width: 1000px;
  text-align: center;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #0b3d0b; /* dark green heading */
  margin-bottom: 1rem;
}

.testimonials-intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #0b3d0b;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.testimonial {
  background: #fff;              /* white card */
  border-radius: 10px;
  padding: 2rem;
  border: 2px solid #d4af37;     /* gold accent */
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.testimonial .quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}

.testimonial .author {
  font-size: 1rem;
  color: #555;
}

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