.cta-section {
        background: #EE3235;
        border-radius: 8px;
        width: 100%;
        max-width: 1110px;
        margin: 0 auto;
        height: 182px;
        margin-top: -53px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cta-section div {
        margin-left: 67px;
    }

    .cta-section h5 {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 49px;
        letter-spacing: 0.02em;
        color: #FFFFFF;
        margin-bottom: 4px;
    }

    .cta-section p {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 22px;
        color: #FFFFFF;
    }

    .cta-section .button {
        font-family: 'Montserrat';
        font-style: normal;
        background: white;
        border-radius: 6px;
        font-weight: 700;
        font-size: 17px;
        line-height: 21px;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 22px;
        border: none;
        text-transform: none;
        text-shadow: none;
        color: #EE3235;
        margin-right: 120px;
    }

    @media only screen and (max-width: 1024px) {
        .cta-section {
            max-width: 90%
        }

        .cta-section .button {
            margin-right: 40px;
        }
    }

    @media only screen and (max-width: 768px) {
        .cta-section {
            margin-top: 0;
            flex-direction: column;
            height: auto;
            border-radius: 0;
            padding: 40px 0;
            gap: 22px;
            max-width: 100%;
        }

        .cta-section div {
            margin-left: 0;
        }

        .cta-section p {
            display: none;
        }

        .cta-section h5 {
            font-weight: 700;
            font-size: 25px;
            line-height: 30px;
            text-align: center;
            letter-spacing: 0;
        }

        .cta-section .button {
            margin-right: 0;
        }
    }