        .swiper-container {
            width: 100%;
            height: auto;
            position: relative;
            overflow: hidden;
        }
        
        .swiper-slide {
            width: 100%;
            height: auto;
            position: relative;
        }
        
        .swiper-slide video,
        .swiper-slide img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }
        
        .slide-content {
            position: absolute;
            top: 35%;
            left: 21%;
            color: white;
            z-index: 2;
            text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
        }
        
        .slide-content h2 {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }
        
        .slide-content p {
            font-size: 1.8rem;
            line-height: 1.5;
        }
        
        .swiper-controls {
            position: absolute;
            bottom: 20px;
            width: 100%;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }
        
        .swiper-pagination {
            position: static;
            width: auto;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }
        
        .swiper-pagination-bullet-active {
            background: #fff;
        }
        
        .swiper-button-prev,
        .swiper-button-next {
            position: static;
            width: 40px;
            height: 40px;
            margin: 0px 20px;
            color: white;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 20px;
        }

@media(max-width: 768px){
	
	        .slide-content {
            position: absolute;
            padding: 12px;
				top: 22%;
				left: 0;
            color: white;
            z-index: 2;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }
        
        .slide-content h2 {
            font-size: 1.4rem;
            margin-bottom: 6px;
        }
        
        .slide-content p {
            font-size: 0.9rem;
            line-height: 1.5;
        }
}