.call-to-action-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    width: calc(100% - 40px);
    max-width: 1400px;

    margin: 0 auto 20px auto;

    padding: 40px 60px;

    background: #1b2358;
    border-radius: 24px;

    overflow: hidden;
    box-sizing: border-box;
}

.call-to-action-section::after {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    top: -110px;
    right: 80px;

    border: 40px solid rgba(120, 73, 73, 0.65);
    border-radius: 50%;

    pointer-events: none;
}

.call-to-action-section__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.call-to-action-section__content h2 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.call-to-action-section__content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.125rem;
    line-height: 1.7;
}

.call-to-action-section__button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    background: #ff8c2b;
    color: #fff;

    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;

    border-radius: 14px;

    white-space: nowrap;

    transition: background .25s ease, transform .25s ease;
}

.call-to-action-section__button:hover {
    background: #ff7b14;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .call-to-action-section {
        flex-direction: column;
        align-items: flex-start;

        gap: 30px;

        width: calc(100% - 40px);
        padding: 40px 30px;
    }

    .call-to-action-section::after {
        width: 220px;
        height: 220px;

        top: -70px;
        right: -40px;

        border-width: 28px;
    }

    .call-to-action-section__content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .call-to-action-section {
        width: calc(100% - 40px);
        padding: 30px 24px;
    }

    .call-to-action-section__content h2 {
        font-size: 1.8rem;
    }

    .call-to-action-section__content p {
        font-size: 1rem;
    }

    .call-to-action-section__button {
        width: 100%;
    }
}