/* Mode sombre : Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
}

/* Titre principal */
h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5em;
    color: #e67e22;
}

/* Section FAQ */
.faq-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Sous-titre */
.faq-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #f39c12;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 5px;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.4em;
    margin: 0;
    color: #ecf0f1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #e67e22;
}

.toggle-icon {
    font-size: 1.2em;
    color: #e67e22;
    margin-left: 10px;
}

.faq-item p {
    margin: 0;
    padding: 10px 15px;
    background: #3b3b3b;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .faq-section {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    .faq-section h2 {
        font-size: 1.5em;
    }

    .faq-item h3 {
        font-size: 1.2em;
    }

    .toggle-icon {
        font-size: 1em;
    }
}
