.sa-3be481c3-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}

.sa-3be481c3-images,
.sa-3be481c3-list {
    box-sizing: border-box;
}

/* Image Styles */
.sa-3be481c3-images {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sa-3be481c3-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
    display: flex;
}

.sa-3be481c3-image-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.sa-3be481c3-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Accordion List Styles */
.sa-3be481c3-item {
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.sa-3be481c3-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sa-3be481c3-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    user-select: none;
}

.sa-3be481c3-item-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sa-3be481c3-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.sa-3be481c3-item-content-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden;
}

.sa-3be481c3-item-content {
    min-height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-bottom: 0;
}

/* Active State */
.sa-3be481c3-item.active .sa-3be481c3-icon {
    transform: rotate(180deg);
}

.sa-3be481c3-item.active .sa-3be481c3-item-content-wrap {
    grid-template-rows: 1fr;
}

.sa-3be481c3-item.active .sa-3be481c3-item-content {
    opacity: 1;
    padding-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .sa-3be481c3-wrapper {
        flex-direction: column !important; /* Force stack on mobile */
    }
    
    .sa-3be481c3-images,
    .sa-3be481c3-list {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .sa-3be481c3-images {
        margin-bottom: 20px;
    }
}