/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #222;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Styles FAQ */
.faq-container {
    margin-top: 1rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #f9f9f9;
}

.faq-item summary {
    padding: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    background-color: #e9ecef;
    border-bottom: 1px solid #ddd;
    list-style: none;
    outline: none;
}

.faq-item summary:hover {
    background-color: #dfe4ea;
}

.faq-item p {
    margin: 0;
    padding: 15px;
    font-size: 1rem;
    background: white;
    line-height: 1.6;
    color: #555;
}

/* Animation lors de l'ouverture des détails */
.faq-item[open] summary {
    background-color: #ced6e0;
    color: #222;
}
