        /* ---- Page FAQ ---- */
        .faq-hero {
            padding: 8rem 5% 3rem;
            text-align: center;
        }
        .faq-hero p {
            color: #b0b0b0;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Formulaire poser une question */
        .faq-ask-box {
            max-width: 700px;
            margin: 0 auto 4rem;
            background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
            border: 1px solid rgba(102,126,234,0.25);
            border-radius: 20px;
            padding: 2rem 2.5rem;
        }
        .faq-ask-box h3 {
            color: #667eea;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .faq-ask-box input,
        .faq-ask-box textarea {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(102,126,234,0.25);
            border-radius: 10px;
            color: #e0e0e0;
            font-size: 14px;
            padding: 10px 14px;
            margin-bottom: 10px;
            outline: none;
            font-family: inherit;
            box-sizing: border-box;
            transition: border-color 0.2s;
            resize: vertical;
        }
        .faq-ask-box input:focus,
        .faq-ask-box textarea:focus { border-color: #667eea; }
        .faq-ask-box input::placeholder,
        .faq-ask-box textarea::placeholder { color: #555; }
        .faq-ask-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 10px 28px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .faq-ask-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102,126,234,0.4);
        }
        #faq-post-msg {
            margin-top: 10px;
            font-size: 13px;
            min-height: 18px;
        }
        .faq-post-ok  { color: #2ed573; }
        .faq-post-err { color: #ff6b6b; }

        /* Liste des FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            padding-bottom: 4rem;
        }
        .faq-item {
            background: linear-gradient(135deg, rgba(102,126,234,0.07), rgba(118,75,162,0.07));
            border: 1px solid rgba(102,126,234,0.15);
            border-radius: 16px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: 0 8px 30px rgba(102,126,234,0.15); }
        .faq-question {
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            user-select: none;
        }
        .faq-question span {
            color: #e0e0e0;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
        }
        .faq-chevron {
            color: #667eea;
            font-size: 1.2rem;
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        .faq-item.open .faq-chevron { transform: rotate(180deg); }
        .faq-answer {
            display: none;
            padding: 0 1.5rem 1.3rem;
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.7;
            border-top: 1px solid rgba(102,126,234,0.1);
        }
        .faq-item.open .faq-answer { display: block; }
        .faq-answer-meta {
            font-size: 0.8rem;
            color: #555;
            margin-top: 0.8rem;
        }
        .faq-empty {
            text-align: center;
            color: #555;
            font-style: italic;
            padding: 3rem 0;
        }

        /* Auteur de la question */
        .faq-author {
            font-size: 0.8rem;
            color: #667eea;
            margin-bottom: 0.3rem;
        }

        @media (max-width: 768px) {
            .faq-ask-box { padding: 1.5rem; }
        }