/* Container principal pentru text și poză */
.content-container {
    display: flex;
    align-items: stretch;
}

/* Containerul din dreapta */
.right-box {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
}

/* Chenarul pentru poză */
.photoHome {
    background: #333;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.photoHome img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid #fff;
    position: relative;
    z-index: 1;
}

/* Responsiv pe mobil */
@media (max-width: 1300px) {
    .content-container {
        flex-direction: column;
    }

    .right-box {
        width: 100%;
        padding: 15px;
    }

    .photoHome {
        padding: 20px;
    }
}
