/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Styles pour la FAQ */
        .faq {
            padding: 80px 20px;
            background: #f8f5f0;
        }
        .faq h2 {
            text-align: center;
            margin-bottom: 50px;
            color: #2d4a3c;
        }
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        .faq-question {
            padding: 20px;
            background: #a8c4a4;
            color: #2d4a3c;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
        }
        .faq-question.active::after {
            content: '−';
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: white;
        }
        .faq-answer.active {
            padding: 20px;
            max-height: 500px; /* Suffisant pour le contenu */
        }
        .faq-answer p {
            text-align: left;
            color: #444;
        }