/* Section globale */

@media (max-width: 768px) {
    .cabinet-content {
        flex-direction: column;
        text-align: center;
    }
}

.info-section {
    padding: 60px 20px;
    text-align: center;
 
}

/* Le Cabinet */
.cabinet-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}

.cabinet-text {
    flex: 1;
    text-align: left;
    font-size: 18px;
}

.cabinet-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.cabinet-image img:hover {
    transform: scale(1.05);
}

/* Tarifs */
.tarif-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.tarif-box h2 {
    margin-bottom: 10px;
}

.btn-rdv {
    display: inline-block;
    padding: 12px 20px;
    background: #dc3545;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-rdv:hover {
    background: #a81d32;
}


/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: bold;
    position: relative;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #444;
}

.faq-item:hover {
    background: #f1f1f1;
}
 
.tarif-box, 
.faq-item {
    color: #000; /* Noir pour une meilleure lisibilité */
}

/* FAQ : fond blanc + texte noir */
.faq-item {
    background: #ffffff; /* Fond blanc */
    color: #000; /* Texte noir */
}

/* Réponses de la FAQ en noir */
.faq-answer {
    color: #000 !important; /* Forcer le texte en noir */
}