:root {
  --testimonials-accent: #4a9e44;
  --testimonials-accent-dark: #3d8a38;
  --testimonials-soft-bg: #F1FFF0;
  --testimonials-border: #cfe8cc;
}

#TestimonialsPage {
  background: #f8f9fa;
  padding: 0 16px 30px;
}

#TestimonialsPage #Texte {
  padding: 0;
  background: transparent;
}

#TestimonialsHero {
  margin: 0 -16px 22px;
  padding: 52px 24px 42px;
  text-align: center;
  background: linear-gradient(135deg, #3d8a38 0%, #6EC166 100%);
}

#TestimonialsHero .hero-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#TestimonialsHero h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.16;
}

#TestimonialsHero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.55;
}

#TestimonialsList {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--testimonials-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(74, 158, 68, 0.06);
}

.testimonial-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, var(--testimonials-soft-bg) 100%);
  border: 1px solid var(--testimonials-border);
}

.testimonial-logo img {
  max-width: 100%;
  height: auto;
  border: 0;
}

.testimonial-quote {
  margin: 0 0 14px;
  color: #404040;
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
}

.testimonial-author {
  color: var(--testimonials-accent-dark);
  font-size: 15px;
  line-height: 1.5;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
}

.testimonial-author a {
  color: var(--testimonials-accent);
}

@media screen and (max-width: 900px) {
  #TestimonialsPage {
    padding: 0 10px 24px;
  }

  #TestimonialsHero {
    margin: 0 -10px 18px;
    padding: 34px 16px 28px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
}

@media screen and (max-width: 520px) {
  #TestimonialsHero h1 {
    font-size: 24px;
  }
}
