.rsg-cta-section {
    background: #5655E3;
    padding: 36px 0;
}

.rsg-cta-container {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.rsg-cta-heading {
    color: #FFF !important;
    font-family: "Helvetica Neue";
    font-size: 20px;
    font-style: normal;
    margin-bottom: 0px;
    font-weight: 500;
    line-height: normal; 
    letter-spacing: 1.4px;
}

.rsg-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    font-size: 18px;
    font-family: var(--font-heading);
    line-height: normal;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.rsg-cta-button:hover {
    background: #0A0C99;
    color: #fff;
}

@media (max-width: 900px) {
    .rsg-cta-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .rsg-cta-section {
        padding: 32px 0;
    }

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

    .rsg-cta-heading {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .rsg-cta-button {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        font-size: 20px;
    }
}