.faq-header {
    width: 100%;
    font-family: 'Arial', sans-serif;
}

.faq-banner {
    background-color: #F8F8F8;
    /* Gris très clair */
    padding: 60px 0 40px 0;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.faq-banner h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000000;

}

.breadcrumb-container {
    background-color: rgb(0, 0, 0);
    /* couleur fond qui dit où on est  */
    color: rgba(0, 0, 0, 0.8);
    padding: 12px 10%;
    font-family: sans-serif;
    font-size: 13px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb .arrow {
    margin: 0 8px;
    color: white;
}

.current-page {
    color: white;
    font-weight: bold;
}

/* Style de la bannière titre */
.faq-banner {
    background-color: #ffffff;
    padding: 50px 10%;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.faq-banner h1 {
    font-size: 42px;
    margin: 0;
    font-weight: 800;
}









.faq-grid {
    display: flex;
    align-items: flex-start;
    /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
    gap: 20px;
}

.faq-card {
    background-color: rgb(252, 242, 224);
    border-radius: 20px;
    padding: 20px;
    width: 20%;
    color: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    /* Pour que le bloc beige s'étire en douceur */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 0;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    /* Ajustez selon la longueur du texte */
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid #000000;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    /* Une petite ligne discrète */
}

.toggle-btn {
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}

.faq-card.active .toggle-btn {
    background-color: #121212;
}

@media only screen and (max-width: 768px) {
    .faq-grid {
        flex-direction: column;
    }

    .faq-card {
        width: 100%;
        /* Cartes en pleine largeur sur mobile */
        box-sizing: border-box;
        /* Inclut le padding dans la largeur */
    }

    .faq-banner h1 {
        font-size: 32px;
        /* Titre plus petit */
    }
}