body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff; /* Blanc */
    color: #333; /* Gris foncé pour un bon contraste */
}

.testimonials-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9; /* Légèrement gris pour contraster avec le blanc */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-in-out;
}

.testimonial-card {
    background-color: #fff; /* Blanc pur */
    border: 1px solid #ddd; /* Gris clair pour un effet subtil */
    border-radius: 15px;
    width: 300px;
    padding: 20px;
    text-align: left;
    color: #333; /* Texte en gris foncé */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 10px 10px rgba(0, 0, 0, 0.1);
}

/* Animation d'apparition */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation fade-in pour le conteneur */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Délais pour un effet séquentiel */
.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.testimonial-card h4 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #555; /* Gris pour une meilleure lisibilité */
}

.testimonial-card .stars {
    color: #f4c150; /* Jaune doré pour les étoiles */
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-card .author {
    font-weight: bold;
    color: #007bff; /* Bleu attractif */
}

.testimonial-card .position {
    font-size: 0.85rem;
    color: #777; /* Gris doux */
}
