/* Containerul principal cu Flexbox */
.container22 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Coloana stângă cu imagine */
.left-column22 img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Coloana dreaptă cu text */
.right-column22 {
    flex: 1;
    min-width: 200px;
}

/* Responsivitate: pe ecrane mici, coloane verticale */
@media (max-width: 768px) {
    .container22 {
        flex-direction: column;
        text-align: center;
    }

    .left-column22 img {
        max-width: 100%;
    }
}