.section-cta {
    display: flex;
    align-items: flex-start;
    min-height: 408px;
    padding: 58px 0 50px;
    /*background-image: url("/wp-content/uploads/2024/12/Group1.png");*/
    background-color: #1F8467;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-access {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
}

.cta-content {
    flex: 1;
    max-width: 583px;
    width: 100%;
    padding-left: 5px;
    position: relative;
    z-index: 1;
}

.cta-content > div:last-child {
    margin-bottom: 0;
}

.cta-content .icardy-button-white {
    text-transform: uppercase;
}

.cta-content-text {
    margin-bottom: 42px;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}

.cta-content h2 {
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    z-index: 0;
}

.cta-image img {
    display: flex;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .section-cta {
        min-height: 600px;
        padding: 37px 0;
        background: linear-gradient(187.41deg, #1F8467 6.47%, #E4EDEB 94.26%);
    }
    .cta-access {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin-bottom: 20px;
        padding-left: 0;
    }

    .cta-content h2 {
        max-width: 80%;
        margin-bottom: 16px;
    }

    .cta-content-text {
        margin-bottom: 40px;
        font-size: 14px;
        line-height: 22px;
    }

    .cta-image {
        display: none;
        justify-content: center;
        align-items: flex-end;
        position: absolute;
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 0;
    }

    .cta-image-mobile {
        display: flex;
    }

    .cta-image img {
        height: 280px;
    }
}