.half-half {
    padding: 6rem 0;
}

.half-half .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.half-half .container.reverse {
    flex-direction: row-reverse;
}

.image-container img {
    max-width: 600px;
}

.text-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
    width: 550px;
    max-width: 85%;
}

@media (max-width: 1550px) {
    .half-half .container,
    .half-half .container.reverse {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column-reverse;
    }
}

@media (max-width: 730px) {
    .image-container img {
        max-width: 100%;
    }
}