.ngg-faq-header {
            text-align: center;
            padding: 30px 20px;
        }

        .ngg-faq-header h3 {
            font-size: 2.2rem;
            font-weight: 600;
        }

        .ngg-faq-list {
            padding: 0;
            display:flex;
            flex-wrap:wrap;
            justify-content: flex-start;
        }

        .ngg-faq-item {
            border-bottom: 1px solid #e9ecef;
            flex:0 49%;
        }

        .ngg-faq-item:last-child {
            border-bottom: none;
        }

        .ngg-faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .ngg-faq-question:hover {
            background-color: #f8f9fa;
        }

        .ngg-faq-question .ngg-icon {
            font-size: 1.3rem;
            color: #007bff;
            transition: transform 0.3s ease;
        }

        .ngg-faq-question.ngg-active .ngg-icon {
            transform: rotate(180deg);
        }

        .ngg-faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            font-size: 1.5rem;
            color: #555;
        }
        .ngg-faq-answer a:link { text-decoration: underline; color:#007bff; }

        .ngg-faq-answer.ngg-active {
            padding: 0 20px 25px;
            max-height: 500px;
        }

        .ngg-faq-answer p {
            margin-bottom: 12px;
        }

        .ngg-faq-answer p:last-child {
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .ngg-faq-header h1 {
                font-size: 1.8rem;
            }

            .ngg-faq-question {
                font-size: 1rem;
                padding: 16px;
            }

            .ngg-faq-answer {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .ngg-faq-header {
                padding: 20px 15px;
            }

            .ngg-faq-header h1 {
                font-size: 1.6rem;
            }

            .ngg-faq-question {
                padding: 14px;
                font-size: 1.4rem;
            }

            .ngg-faq-answer.ngg-active {
                padding: 0 14px 20px;
            }
        }