.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  margin-left: -80px;
  margin-right: -80px;
  overflow-x: hidden;
}
.testimonials-container.lazy-loaded {
  background: url("https://res.cloudinary.com/dbbedy5lo/image/upload/w_1440,q_85,f_auto/v1750105455/testimonials-bg_mtci3t.png")
    no-repeat center center/cover;
}
.testimonials-container h2 {
  font-size: 3rem;
  font-weight: bold;
}
.testimonials-container h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 50px;
}
.testimonials {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  flex-wrap: wrap;
}
.testimonial {
  width: 30%;
  min-width: 250px;
  text-align: center;
}
.testimonial p {
  font-size: 16px;
}
.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 10px;
}
.quote {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.content {
  font-size: 14px;
  line-height: 1.6;
}
.author {
  margin-top: 10px;
  font-weight: bold;
}
/* Responsive Layout */
@media screen and (max-width: 1124px) {
  .testimonials-container {
    margin-left: -70px;
    margin-right: -70px;
  }
}

@media screen and (max-width: 900px) {
  .testimonials-container {
    margin-left: -50px;
    margin-right: -50px;
  }
  .testimonials-container h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .testimonials-container {
    margin-left: -20px;
    margin-right: -20px;
  }
  .testimonials-container h2 {
    font-size: 2rem;
  }
}
