.custom-slider {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 520px;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(35, 176, 187, 1), rgba(10, 59, 97, 1));
}

.custom-slider .slides {
    display: flex;
    flex-direction: row;
    width: calc(100vw * 6);
    height: 100%;
    transition: transform 0.6s ease;
}

.custom-slider .slide {
    width: 100vw;
    height: 520px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-slider .slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.slider-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1;
}

.slider-nav .dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.slider-nav .dot.active {
    opacity: 1;
}