.hero-image-section {
    position: relative;
    width: 100%;
    min-height: 158vh;
    display: flex;
    align-items: center;
    z-index: 400;
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

.image-content {
    position: relative;
    z-index: 3;
    width: 50%;
    max-width: 600px;
    color: #333;
    padding: 4rem;
    animation: fadeInLeft 1.2s ease-out;
}

.image-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
}

.image-content p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 500px;
    color: #333;
}

.image-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 202vh;
    background-image: url('../images/man.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 1000;
    will-change: transform;
    pointer-events: none;
    border-bottom-left-radius: 60px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}