.hiw-7127954e-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hiw-7127954e-steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hiw-7127954e-step {
    padding: 20px;
    border-left: 4px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.hiw-7127954e-step.active {
    border-left-color: #000;
    opacity: 1;
    background-color: #f9f9f9;
}

.hiw-7127954e-step-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.hiw-7127954e-step-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.hiw-7127954e-images-container {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.hiw-7127954e-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.hiw-7127954e-image-wrapper.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hiw-7127954e-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hiw-7127954e-container {
        flex-direction: column;
    }
}
