     /* Frequntly Ask Questions start */
     .faq-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px 0;
    }

    .faq-wrapper {
        display: flex;
        width: 80%;
        max-width: 1200px;
        gap: 20px;
    }

    .faq-container {
        flex: 1;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .faq-container h1 {
        text-align: left;
        color: #333;
        margin-bottom: 20px;
    }

    .faq-item {
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 15px;
        font-size: 16px;
        color: #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

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

    .faq-answer {
        padding: 15px;
        font-size: 14px;
        color: #555;
        display: none;
    }

    .arrow {
        font-weight: bold;
        font-size: 20px;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .faq-question.active .arrow {
        transform: rotate(45deg);
    }

    .faq-answer.open {
        display: block;
    }

    .faq-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .faq-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .faq-wrapper {
            flex-direction: column;
        }

        .faq-image {
            margin-top: 20px;
        }
    }

    /* Frequntly Ask Questions End */