#simple-qa {
    padding: 120px 0 100px;
}
#simple-qa-inner {
    max-width: 928px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;    
}

.simple-qa-title {
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
    text-align: center;
    letter-spacing: -0.04em;
    color: #0A2144;
    margin: 0 0 65px 0;
}

.qa-item {
    border-bottom: 1px solid #E0E4EB;
    margin: 0 0 22px 0;
    /* padding: 0 0 0 0; */
    /* height: 85px; */
    padding: 28px 0;
    overflow: hidden;
    /* transition: all 0.3s ease-in-out; */
}
.qa-item.active {
    /* padding: 0 0 28px 0; */
    /* height: 100%; */
    /* max-height: 3000px; */
    /* overflow: auto; */
    /* transition: all 0.3s ease-in-out; */
}
.qa-item:last-child {
    margin: 0;
}
.qa-item .question {
    /* height: 85px; */
    padding: 0 8px 0 64px;
    position: relative;
    font-weight: 700;
    font-size: 18px;
    line-height: 29px;
    color: #0B1627;
    /* line-height: 85px; */
    cursor: pointer;
}
.qa-item .question::after {
    content: "";
    position: absolute;
    top: 39%;
    left: 8px;
    margin: -8px 0 0 0;
    width: 24px;
    height: 24px;
    background-image: url(../../img/qa-plus.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.qa-item.active .question::after {
    background-image: url(../../img/qa-minus.png);
}
.qa-item .answer {
    padding: 24px 8px 0 64px;
}

.qa-item .answer p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #353D46;
    padding: 0;
    margin: 0;
}
.qa-item {
    /* height: 0; */
    max-height: 85px;
    transition: max-height 0.4s ease-in-out;
    overflow: hidden;
}
.qa-item.active {
    /* height: auto; */
    max-height: 2000px;
    transition: max-height 0.5s ease-in-out;
}
@media (max-width: 991px) {
    #simple-qa-inner {
        max-width: none;
        width: 100%;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        flex-direction: column;    
    }
}
@media (max-width: 768px) {
    #simple-qa {
        padding: 40px 0;
    }
    .qa-item .question {
        padding: 22px 0 23px 36px;
        font-size: 16px;
        line-height: 22px;
        display: flex;
        align-items: center;
    }
    .qa-item {
        border-bottom: 1px solid #E0E4EB;
        margin: 0 0 16px 0;
        padding: 0 0 18px 0;
        /* height: 77px; */
    }
    .qa-item .question {
        /* height: 77px; */
    }
    .qa-item .question::after {
        left: 0;
        top: 43%;
    }
    .qa-item .answer {
        padding: 0 2px 0 36px;
    }
    .simple-qa-title {
        text-align: left;
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -0.04em;
        margin: 0 0 40px 0;
    }
    .qa-item {
        /* height: 0; */
        max-height: 77px;
        transition: max-height 0.8s ease-in-out;
        overflow: hidden;
    }
    .qa-item.active {
        /* height: auto; */
        max-height: 3000px;
        transition: max-height 0.8s ease-in-out;
    }
}