/* Styles spécifiques à la FAQ */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1f2933;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.faq-question {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2933;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.faq-question:hover {
    color: #e1306c;
}

.faq-answer {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1rem;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1rem 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle.open {
    transform: rotate(45deg);
}

/* Intégration avec ton style existant */
main {
    padding: 2rem 1rem;
}

header, nav {
    position: static !important;
    z-index: auto !important;
}

nav {
    background: rgba(81, 92, 77, 0.97);
    backdrop-filter: blur(14px);
    padding: 1rem 5%;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }

.nav-logo-img {
    height: auto; /* Garde les proportions naturelles */
    max-width: 100px; /* Ajuste cette valeur selon la largeur souhaitée */
    width: 100%; /* Prend toute la largeur disponible */
    display: block;
    border-radius: 3px;
}
