.faq-section {}

.faq-section .faq-section__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 0;
}

.faq-section .faq-section__container .faq-section__container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 56px;
}

.faq-section .faq-section__container .faq-section__title-container .faq-section__pre-title {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(117, 156, 178, 1);
    margin-bottom: 8px;
}

.faq-section .faq-section__container .faq-section__title-container .faq-section__title {
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(12, 25, 55, 1);
}

.faq-section .faq-section__container .faq-section__content {
    max-width: 840px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid rgba(196, 204, 209, 1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-question .faq-section__content-item-title {
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: right;
    color: rgba(12, 25, 55, 1);
    user-select: none;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-question .faq-section__content-item-button-icon {
    width: 32px;
    height: 32px;
    background-image: url(../../../assets/images/icons/plus-dark.svg);
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item.active .faq-section__content-item-question .faq-section__content-item-button-icon {
    background-image: url(../../../assets/images/icons/close-dark.png);
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: right;
    color: rgba(12, 25, 55, 1);
    user-select: none;
    margin: 0;
    padding: 0;
}

/* WYSIWYG Content Styles */
.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer p {
    margin-bottom: 16px;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer p:last-child {
    margin-bottom: 0;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer a {
    color: rgba(117, 156, 178, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer a:hover {
    color: rgba(12, 25, 55, 1);
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer ul {
    margin: 16px 0;
    padding-right: 24px;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer ol {
    margin: 16px 0;
    padding-right: 7px;
    counter-reset: item;
    list-style: none;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer li {
    margin-bottom: 8px;
    position: relative;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer ol li {
    padding-right: 20px;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    right: 0;
    color: rgba(117, 156, 178, 1);
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer strong {
    font-weight: 700;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer em {
    font-style: italic;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer blockquote {
    margin: 16px 0;
    padding: 16px 24px;
    border-right: 4px solid rgba(117, 156, 178, 1);
    background-color: rgba(50, 186, 246, 0.05);
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
}

.faq-section .faq-section__container .faq-section__content .faq-section__content-item.active .faq-section__content-item-answer {
    max-height: 1000px;
    opacity: 1;
    padding-top: 12px;
}

.faq-section .faq-section__container .faq-section__button {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    background-color: rgba(0, 21, 74, 1);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    margin-top: 32px;
    text-decoration: none;
    text-align: center;
}

@media (max-width: 1440px) {
    .faq-section .faq-section__container .faq-section__content {
        max-width: 752px;
    }
}

@media (max-width: 1280px) {
    .faq-section .faq-section__container .faq-section__content {
        max-width: 689px;
    }
}

@media (max-width: 768px) {
    .faq-section .faq-section__container {
        padding: 40px;
    }

    .faq-section .faq-section__container .faq-section__content {
        max-width: 100%
    }

    .faq-section .faq-section__container .faq-section__title-container .faq-section__pre-title {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-section .faq-section__container .faq-section__title-container .faq-section__title {
        font-size: 32px;
        line-height: 41.6px;
    }

    .faq-section .faq-section__container .faq-section__title-container{
        margin-bottom: 32px;
    }

    .faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-question .faq-section__content-item-title{
        font-size: 16px;
        line-height: 24px;
    }

    .faq-section .faq-section__container .faq-section__content .faq-section__content-item {
        padding: 16px 0;
    }

    .faq-section .faq-section__container .faq-section__content .faq-section__content-item .faq-section__content-item-answer{
        font-size: 14px;
        line-height: 21px;
    }
}


