
.banner-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.banner-slides {
    width: 100%;
    height: auto;
}
.banner-slide {
    display: none;
    width: 100%;
    height: auto;
}
.banner-slide.active {
    display: block;
}
.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s;
}
.banner-dot.active {
    background-color: #ffffff;
}
@media screen and (max-width: 768px) {
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    .banner-dots {
        bottom: 10px;
        gap: 8px;
    }
}