.rsg-faq-accordion {
    background: #f7f7f7;
    padding: 70px 0 90px;
}

.rsg-faq-container {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}

.rsg-faq-header {
    margin: 0 auto 45px;
}

.rsg-faq-heading {
    color: #070096;
    font-size: 35px;
    line-height: normal;
    font-weight: 800;
    margin: 0;
}

.rsg-faq-description {
    color: #333333;
    font-size: 18px;
    line-height: 1.45;
    margin-top: 18px;
}


.rsg-faq-list {
    margin: 0 auto;
    border-top: 2px solid #00BEEC;
}

.rsg-faq-item {
    border-bottom: 2px solid #00BEEC;
}

.rsg-faq-question {
    width: 100%;
    padding: 15px 12px 15px 4px;
    border: 0;
    background: transparent;
    color: #333333;
    font-size: 16px;
    font-family: var(--font-heading);
    line-height: normal;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.rsg-faq-answer p:last-child {
    margin-bottom: 0 !important;
}

.rsg-faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #5655E3;
    position: relative;
    flex: 0 0 20px;
    margin-left: 20px;
}

.rsg-faq-icon::before,
.rsg-faq-icon::after {
    content: "";
    position: absolute;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rsg-faq-icon::before {
    width: 10px;
    height: 2px;
}

.rsg-faq-icon::after {
    width: 2px;
    height: 10px;
}

.rsg-faq-item.active .rsg-faq-icon::after {
    display: none;
}

.rsg-faq-answer {
    display: none;
    color: #333;
    font-size: 14px;
    line-height: normal;
    padding: 0 48px 18px 4px;
}

.rsg-faq-item.active .rsg-faq-answer {
    display: block;
}

.rsg-faq-answer p {
    margin: 0 0 12px;
}

@media (max-width: 600px) {
    .rsg-faq-accordion {
        padding: 55px 0 65px;
    }

    .rsg-faq-container {
        width: min(100% - 28px, 1220px);
    }

    .rsg-faq-question {
        font-size: 17px;
        align-items: flex-start;
    }

    .rsg-faq-answer {
        font-size: 16px;
        padding-right: 0;
    }
}