/* Styles existants... */

/* Styles pour les témoignages */
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

/* Styles pour la FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
}

summary {
    font-weight: bold;
    cursor: pointer;
}

details p {
    margin-top: 10px;
    padding-left: 20px;
}

/* Ajoutez ici les autres styles nécessaires */
