        .faq-section {
            padding: 40px 0;
            background: #f8f9fa;
        }

        .faq-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .faq-subtitle {
            color: #6c757d;
            margin-bottom: 45px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 10px 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 18px;
            font-weight: 600;
            color: #212529;
            transition: 0.3s ease;
        }

        .faq-question:hover {
            color: #0d6efd;
        }

        .faq-icon {
            font-size: 24px;
            font-weight: 400;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            display: none;
            padding: 0 25px 20px;
            color: #6c757d;
            line-height: 1.7;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-item.active .faq-question {
            color: #0d6efd;
        }