.faq h2 {
    text-align: center;
    color: #063190;
    margin-top: 22px;
    margin-bottom: 22px;
}

.faq__qa {
    padding: 20px 0;
    scroll-margin-top: 109px;

}

@media screen and (max-width: 1024px) {
    .faq__qa {
     scroll-margin-top: 59px;
    }
}

.faq__qa + .faq__qa {
    border-top: 1px solid #063190;
}

.faq__qa:last-child {
    border-bottom: 1px solid #063190;
}

.faq__qa--title {
    color: #063190;
    cursor: pointer;
    padding-right: 46px;
    margin-bottom: 0;
    position: relative;
    user-select: none;
}

.faq__qa--title::after {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    content: "+";
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    width: 30px;
    height: 30px;
    border: 2px solid #063190;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq__qa.is-open .faq__qa--title::after {
    content: "\2212";
    transform: translateY(-50%) rotate(180deg);
}

.faq__qa--content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease, margin-top 0.35s ease;
    margin-top: 0;

    iframe {
        max-width: 100%;
    }

    ul {
        list-style-type: disc;
        padding-left: 2em;
    }

    ol {
        list-style-type: decimal;
        padding-left: 2em;
    }


    li {
        line-height: 2;
    }
}

.faq__qa.is-open .faq__qa--content {
    margin-top: 40px;
}
