.testimonials-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonials-section .card-rose {
    border-left: 4px solid rgba(var(--color-rose), var(--bs-bg-opacity));
}

.testimonials-section .card-orange {
    border-left: 4px solid rgba(var(--color-orange), var(--bs-bg-opacity));
}

.testimonials-section .card-poivre {
    border-left: 4px solid rgba(var(--color-poivre), var(--bs-bg-opacity));
}