.testimonials-page {
  max-width: 1000px;
  margin: 4em auto;
  padding: 0 2em;
  font-family: 'Poppins', sans-serif;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
  margin-bottom: 4em;
  padding-left: 1.5em;
}

.testimonial-image {
  flex-shrink: 0;      /* Prevent shrinking */
  width: 250px;        /* Or a fixed width */
}
.testimonial-image img {
  max-width: 100%;     /* Let image fill container */
  height: auto;
  object-fit: contain;
}

.testimonial-content {
  flex: 1;
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}