.zg-acc-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}
.zg-acc-left {
    width: 50%;
}
.zg-acc-right {
    width: 50%;
}
.zg-acc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zg-acc-item {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 35px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #f8f8f8;
}
.zg-acc-item.active {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.zg-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.zg-acc-item-number {
    font-size: 14px;
    background: linear-gradient(135deg, rgb(31, 68, 239), rgb(163, 54, 173));
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
.zg-acc-item-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
}
.zg-acc-toggle-icon {
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.25s ease;
}
.zg-acc-item.active .zg-acc-toggle-icon {
    transform: rotate(45deg);
}
.zg-acc-body {
    margin-top: 8px;
}
.zg-acc-item-content {
    font-size: 15px;
    line-height: 1.6;
}

.zg-acc-image-wrapper {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #111;
}
.zg-acc-image-item {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.35s ease, transform 0.35s ease;
    height: 0;
}
.zg-acc-image-item.active {
    opacity: 1;
    transform: scale(1);
    height: auto;
}
.zg-acc-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .zg-acc-wrapper {
        flex-direction: column;
    }
    .zg-acc-left,
    .zg-acc-right {
        width: 100%;
    }
    .zg-acc-image-wrapper {
        margin-top: 15px;
    }
}