 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        .faq-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #f1f5f8 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 60%);
            pointer-events: none;
        }

        .faq-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.02) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Container principal */
        .faq-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header de la section */
        .faq-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
            border: 1px solid rgba(0, 102, 255, 0.15);
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            color: #0066ff;
            font-weight: 600;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
        }

        .faq-title {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #1a1a1a 0%, #0066ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .faq-subtitle {
            display: block;
            font-size: 20px;
            font-weight: 400;
            color: #6b7280;
            margin-top: 12px;
        }

        /* Layout FAQ en 2 colonnes */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        /* Items FAQ */
        .faq-item {
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(0, 102, 255, 0.08);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.04);
        }

        .faq-item:hover {
            box-shadow: 0 12px 40px rgba(0, 102, 255, 0.1);
            transform: translateY(-2px);
            border-color: rgba(0, 102, 255, 0.15);
        }

        .faq-item.active {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
            border-color: rgba(0, 102, 255, 0.2);
            box-shadow: 0 16px 48px rgba(0, 102, 255, 0.12);
        }

        /* Question */
        .faq-question {
            padding: 24px 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #0066ff 0%, #0052d4 100%);
            transition: height 0.3s ease;
        }

        .faq-item.active .faq-question::before {
            height: 60%;
        }

        .faq-question:hover {
            background: rgba(0, 102, 255, 0.02);
        }

        .question-content {
            display: flex;
            align-items: start;
            gap: 16px;
            flex: 1;
        }

        .question-number {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #0066ff;
            font-size: 14px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-item.active .question-number {
            background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }

        .question-text {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            color: #0066ff;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Réponse */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .answer-content {
            padding: 0 28px 28px 76px;
            color: #4b5563;
            line-height: 1.7;
            font-size: 15px;
        }

        .answer-content strong {
            color: #0066ff;
            font-weight: 600;
        }

        .answer-content ul {
            margin-top: 12px;
            margin-left: 20px;
        }

        .answer-content li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 8px;
        }

        .answer-content li::marker {
            color: #0066ff;
        }

        /* Bouton voir plus */
        .faq-more {
            text-align: center;
            margin-top: 60px;
        }

        .faq-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
        }

        .faq-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .faq-title {
                font-size: 36px;
            }

            .faq-header {
                margin-bottom: 60px;
            }

            .faq-question {
                padding: 20px 24px;
            }

            .answer-content {
                padding: 0 24px 24px 24px;
            }

            .question-text {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 28px;
            }

            .faq-subtitle {
                font-size: 16px;
            }

            .faq-question {
                padding: 16px 20px;
            }

            .question-number {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .question-text {
                font-size: 14px;
            }

            .answer-content {
                font-size: 14px;
                padding: 0 20px 20px 20px;
            }
        }