
/* Section Q&A */
.qa-block-container {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;

    .section-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 8px;
    }

    .title {
        font-family: Demo;
        font-size: 48px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.21;
        letter-spacing: normal;
        text-align: left;
        color: #002b46;
        margin: 0;
    }

    .subtitle {
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: left;
        color: #002c45;
        margin: 0;
    }

    #qaAccordion {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 0;
    }

    .accordion-item {
        border-width: 0;
        background-color: unset;
        margin-bottom: 0;
    }

    .accordion-header {
        background: rgb(229, 248, 251);
        border-radius: 50px;
    }

    .accordion-button {
        display: flex;
        align-items: flex-start;
        column-gap: 8px;
        box-shadow: none;
        font-family: Inter;
        font-size: 24px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.42;
        letter-spacing: normal;
        text-align: left;
        color: #002b46;
        border-width: 0;
        border-style: initial;
        border-color: initial;
        border-image: initial;
        background: none;
        padding: 15px 24px;
        outline: none;
        background-color: unset !important;
    }

    .accordion-button:before {
        content: " ";
        background-image: url(../icons/remove_black.svg);
        background-position: center;
        width: 24px;
        min-width: 24px;
        height: 24px;
        display: inline-block;
        margin: 5px 0 0 0;
    }

    .accordion-button.collapsed:before {
        background-image: url(../icons/add_black.svg);
    }

    .accordion-button::after {
        display: none;
    }

    .accordion-body {
        padding: 16px 56px 0;
        font-family: Inter;
        color: #002c45;
    }

    .accordion-body p {
        font-size: 18px;
        padding: 0;
    }

    .accordion-body ul,
    .accordion-body ol {
        list-style: unset;
        margin-left: 20px;
    }

    .accordion-body li {
        font-size: 18px;
    }

    .qa-button-container {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
        align-items: center;
    }

    .button-title {
        font-family: Inter;
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: left;
        color: #002c45;
        margin: 0;
    }

    .qa-button-container a,
    .qa-button-container button {
        height: 50px;
        padding: 15px 24px 14px;
        border-radius: 5px;
        border: solid 1px #00b5d3;
        background-color: #ffffff;
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        color: #00b5d3;
        display: flex;
        align-items: center;
    }


    @media (max-width: 768px) {

        row-gap: 24px;
        padding: 30px 20px;

        .section-title {
            align-items: flex-start;
        }

        .title {
            font-size: 28px;
            line-height: normal;
            text-align: left;
        }

        .subtitle {
            font-size: 16px;
        }

        #qaAccordion {
            gap: 24px;
        }

        .accordion-item {
            border-bottom: 1px solid rgba(0, 43, 70, 0.2);
            padding-bottom: 15.5px;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .accordion-header {
            background: unset;
            border-radius: 0;
        }

        .accordion-button {
            font-size: 16px;
            font-weight: bold;
            line-height: 1.56;
            padding: 0;
            margin: 0 !important;
        }

        .accordion-button:before {
            margin: 0;
        }

        .accordion-body {
            padding: 16px 32px 0;
        }

        .accordion-body p {
            font-size: 16px;
        }

        .accordion-body ul,
        .accordion-body ol {
            margin-left: 18px;
        }

        .accordion-body li {
            font-size: 16px;
        }

        .qa-button-container {
            row-gap: 8px;
            margin-top: 16px;
        }

        .button-title {
            font-size: 16px;
        }

        .qa-button-container a,
        .qa-button-container button {
            width: 100%;
            padding: 14px 24px 14px;
            justify-content: center;
        }
    }

}