        .container-faq {
            /* max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px; */
        }

        .page-title-faq {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .page-subtitle-faq {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .faq-section {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .section-title-faq {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .faq-question {
            background-color: #f8f9fa;
            padding: 20px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #e9ecef;
        }

        .faq-question.active {
            background-color: #3498db;
            color: #fff;
        }

        .faq-icon {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #fff;
        }

        .faq-answer.active {
            max-height: 2000px;
            padding: 20px;
        }

        .faq-answer p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
        }

        .faq-answer ul {
            margin-left: 30px;
            margin-bottom: 15px;
        }

        .faq-answer li {
            margin-bottom: 10px;
            color: #555;
        }

        @media (max-width: 768px) {
            .page-title-faq {
                font-size: 32px;
            }

            .faq-question {
                font-size: 16px;
                padding: 15px;
            }

            .section-title-faq {
                font-size: 24px;
            }
        }