        /* FAQ Section Styles */
        .faq-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .faq-header p {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-column {
            padding: 0 15px;
        }

        /* Country FAQ Styles */
        .faq-country-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            background-color: #fff;
        }

        .faq-country-question {
            padding: 15px 20px;
            background-color: #f8f9fa;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-country-question:hover {
            background-color: #e9ecef;
        }

        .faq-country-question i {
            transition: transform 0.3s ease;
            color: #007bff;
        }

        .faq-country-item.active .faq-country-question i {
            transform: rotate(180deg);
        }

        .faq-country-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #fff;
        }

        .faq-country-item.active .faq-country-answer {
            max-height: 2000px;
        }

        /* Sub-item Styles */
        .faq-sub-item {
            border-bottom: 1px solid #f0f0f0;
        }

        .faq-sub-item:last-child {
            border-bottom: none;
        }

        .faq-sub-question {
            padding: 12px 20px;
            background-color: #f8f9fa;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-sub-question:hover {
            background-color: #e9ecef;
        }

        .faq-sub-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-sub-item.active .faq-sub-answer {
            max-height: 500px;
        }

        .faq-sub-answer p {
            padding: 10px 20px;
            margin: 0;
        }

        .faq-sub-answer .keywords {
            font-size: 0.9rem;
            color: #6c757d;
            font-style: italic;
            background-color: #f8f9fa;
            border-left: 3px solid #007bff;
            padding: 8px 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .faq-column {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .faq-header h2 {
                font-size: 1.8rem;
            }

            .faq-country-question {
                font-size: 0.9rem;
            }

            .faq-sub-question {
                font-size: 0.85rem;
            }
        }

