/* FAQ — Accordéon */
#faq details {
    background-color: #f0f5f0;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px 10px;
    margin-bottom: 0.5rem;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#faq summary {
    list-style: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#faq summary::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

#faq details[open] summary::after {
    transform: rotate(180deg);
}

#faq summary::-webkit-details-marker {
    display: none;
}

#faq details p {
    margin-top: 1rem;
    color: #555;
    line-height: 1.6;
}

#faq h2 {
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: white;
}

#faq {
    background-color: #6f7f63;
    padding: 32px 16px;
    border-radius: 8px;
    box-shadow: var(--Box-shadow);
}