/* Fix pour la section "Ce que nos clients en disent" */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-gray); /* Fond gris comme "Pourquoi choisir CleanHit" */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--secondary-color); /* Fond blanc pour le slider */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial {
    position: relative;
    padding: 20px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -20px;
}

.testimonial-text::after {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    bottom: -50px;
    right: -20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-slider {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
}
