.banner-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 0;
}

.banner-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
}

.banner-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #7cb89a;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.8);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.banner-dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .banner-container {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
    
    .banner-nav {
        width: 30px;
        height: 30px;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .banner-container {
        margin: 0;
    }
    
    .banner-nav {
        width: 25px;
        height: 25px;
    }
} 