.banner-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    pointer-events: none;
}

.banner-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-link {
    display: block;
    width: 100%;
    position: relative;
    text-decoration: none;
}

.banner-content {
    position: absolute;
    top: 0px;
    left: 0px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont-info-banner {
    width: 1280px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-content h3 {
    font-size: 42px;
    margin: 0 0 15px 0;
    font-weight: bold;
    line-height: 1.2;
}

.banner-content p {
    font-size: 18px;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 36px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.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: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.banner-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .banner-content {
        max-width: none;
    }
    
    .banner-content h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .banner-prev,
    .banner-next {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .banner-content h2 {
        font-size: 18px;
    }
    
    .banner-content p {
        font-size: 13px;
    }
    
    .banner-prev,
    .banner-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}