.vsc-9917f35a-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vsc-9917f35a-slides-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    will-change: transform;
}

.vsc-9917f35a-slide {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    opacity: 0.3;
    transition: opacity 0.6s ease-in-out;
}

.vsc-9917f35a-slide.active {
    opacity: 1;
}

.vsc-9917f35a-left-content {
    flex: 1;
    padding-right: 40px;
}

.vsc-9917f35a-heading {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.vsc-9917f35a-subheading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.vsc-9917f35a-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.vsc-9917f35a-side-box {
    width: 320px;
    min-width: 320px;
    padding: 30px;
    box-sizing: border-box;
    margin-right: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vsc-9917f35a-side-heading {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.vsc-9917f35a-side-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Dots navigation */
.vsc-9917f35a-dots-wrapper {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.vsc-9917f35a-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.vsc-9917f35a-dot:hover {
    transform: scale(1.2);
}

.vsc-9917f35a-dot.active {
    transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vsc-9917f35a-slide {
        flex-direction: column;
        align-items: stretch;
        padding: 30px 45px 30px 30px;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .vsc-9917f35a-left-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .vsc-9917f35a-side-box {
        width: 100%;
        min-width: unset;
        margin-right: 0;
    }

    .vsc-9917f35a-dots-wrapper {
        right: 15px;
    }
}
