.rsg-content-accordion {
    background: #ffffff;
    padding: 80px 0;
}

.rsg-content-accordion-container {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: start;
}

.rsg-content-accordion-icon {
    width: 58px;
    height: auto;
    display: block;
    margin-bottom: 22px;
}

.rsg-content-accordion-title {
    font-size: 35px;
    line-height: normal;
    font-weight: 800;
}

.rsg-content-accordion-text {
    color: #333333;
    font-size: 16px;
    line-height: normal;
}


.rsg-content-accordion-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00BEEC !important;
}

.rsg-accordion-main-title {
    color: #5655E3;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 16px;
}

.rsg-accordion-list {
    border-top: 2px solid #00BEEC;
}

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

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

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

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

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

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

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

.rsg-accordion-content {
    display: none;
    padding: 0 40px 28px 0;
}

.rsg-accordion-item.active .rsg-accordion-content {
    display: block;
}

.rsg-accordion-text {
    color: #333;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 22px;
}

@media (max-width: 1024px) {
    .rsg-content-accordion-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

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

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

    .rsg-content-accordion-text {
        font-size: 17px;
    }

    .rsg-accordion-main-title {
        font-size: 24px;
    }

    .rsg-accordion-toggle {
        font-size: 19px;
    }

    .rsg-accordion-content {
        padding-right: 0;
    }

    .rsg-content-accordion-button,
    .rsg-accordion-button {
        font-size: 18px;
        padding: 12px 28px;
    }
}