section.cta {
    display: block;
    margin: 60px 0;
}

section.cta .container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

section.cta img {
    display: block;
    max-width: 370px;
    max-height: 335px;
    min-width: 370px;
    min-height: 335px;
    border-radius: 30px;
    object-fit: cover;
}

section.cta .cta__content {
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    flex: 1;
}

section.cta h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-blue-100);
}

section.cta a.cta__button {
    display: table;
    padding: 10px 30px;
    color: #fff;
    background: var(--dark-blue-100);
    border-radius: 40px;
    width: fit-content;
}


@media all and (max-width:768px) {
    section.cta img {
        max-width: 100%;
        min-width: 100%;
    }

    section.cta .container {
        flex-direction: column;
        max-width: 90%;
        gap: 15px;
    }

    section.cta h2 {
        font-size: 24px;
        line-height: 1.2;
    }
}