.it-104f4c61-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.it-104f4c61-wrapper.it-104f4c61-align-center {
    align-items: center;
}

.it-104f4c61-left,
.it-104f4c61-right {
    flex: 1;
    min-width: 300px;
}

.it-104f4c61-images {
    position: relative;
    width: 100%;
}

.it-104f4c61-image {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.it-104f4c61-image.active {
    display: block;
    animation: fadeIn_104f4c61 0.5s ease-in-out;
}

.it-104f4c61-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.it-104f4c61-tab {
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.it-104f4c61-tab-title {
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.it-104f4c61-tab-desc {
    display: none;
    margin-top: 15px;
    line-height: 1.6;
}

.it-104f4c61-tab.active .it-104f4c61-tab-desc {
    display: block;
    animation: slideDownFade_104f4c61 0.4s ease-out forwards;
}

@keyframes fadeIn_104f4c61 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDownFade_104f4c61 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
