.ia-container-7d85038c {
    display: flex;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

@media (max-width: 767px) {
    .ia-container-7d85038c {
        flex-direction: column;
    }
}

.ia-images-7d85038c {
    flex: 1;
    position: relative;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

@media (max-width: 767px) {
    .ia-images-7d85038c {
        min-height: 250px;
    }
}

.ia-image-7d85038c {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.ia-image-7d85038c.default-visible {
    opacity: 1;
    z-index: 1;
}

.ia-images-7d85038c.has-active .ia-image-7d85038c.default-visible:not(.active) {
    opacity: 0;
    z-index: 0;
}

.ia-image-7d85038c.active {
    opacity: 1;
    z-index: 2;
}

.ia-image-7d85038c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Force top alignment when collapsed/default */
    display: block;
    transition: object-position 0.4s ease;
}

.ia-image-7d85038c.active img {
    object-position: center center; /* Show full image ideally centered when expanded */
}


.ia-accordion-7d85038c {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.ia-item-7d85038c {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.ia-header-7d85038c {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
    outline: none;
}

.ia-header-7d85038c:hover,
.ia-header-7d85038c:focus {
    background: #f9f9f9;
}

.ia-item-7d85038c.active {
    border-color: #d5d5d5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ia-content-7d85038c {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.ia-item-7d85038c.active .ia-content-7d85038c {
    grid-template-rows: 1fr;
}

.ia-content-inner-7d85038c {
    overflow: hidden;
    padding: 0 20px;
    color: #666;
    opacity: 0;
    transition: opacity 0.4s ease, padding 0.4s ease;
}

.ia-item-7d85038c.active .ia-content-inner-7d85038c {
    padding: 0 20px 20px;
    opacity: 1;
}
