.faq-title{
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 110px;
    width: 30%;

    @media screen and (max-width: 560px){
        width: 100%;
        margin-bottom: 0;
    }
}

.faq{
    .faq-head{
        display: flex;
        justify-content: space-between;

        .faq-img{
            display: flex;
            justify-content: end;
            img{
                width: 50%;
            }

            @media screen and (max-width: 560px){
                justify-content: center;
                img{
                    width: 80%;
                }
            }
        }
        margin-bottom: 40px;

        @media screen and (max-width: 560px){
            flex-direction: column;
        }
    }

    #faqAccordion{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .accordion-body{
        color:  #1D2D53;
        font-family: Georgia;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 32px;
        border-radius: 10px;
    }

    .faq-accordion{
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .accordion-item{
        border-radius: 10px;
    }

    .accordion-body{
        background: #cacdd536;
    }

    .accordion-button{
        padding: 18px 43px;
        color: #1D2D53;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        box-shadow: 0px 1px 5px 0px rgba(29, 45, 83, 0.20) !important;
        border: 0;
        outline: none;
        border-radius: 10px !important;

        &:focus{
            border: 0;
            box-shadow: none;
        }
    }

    .accordion-button:not(.collapsed) {
        border-radius: 10px;
        background: #0EAA9E;
        color: white;
        font-family: Montserrat;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

}