 .faq-container {
            margin: 50px auto;
            padding: 0 20px;
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            background-color: #f8f8f8;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

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

        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #666;
            transition: transform 0.3s;
        }

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

        .faq-item.active .faq-question {
            background-color: #e8e8e8;
        }

        .faq-item.active .faq-question::after {
            content: '-';
            transform: rotate(180deg);
        }

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

        @media (max-width: 768px) {
            .faq-container {
                margin: 30px auto;
            }

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

            .faq-answer {
                font-size: 14px;
            }
        }
        @media screen and (max-width: 1099px){
            .column-reverse{
                flex-direction: column-reverse;
            }
        }