.hs-swiper-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hs-swiper-container .swiper {
    width: 100%;
    height: 600px;
}

.hs-swiper-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hs-swiper-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hs-swiper-container .swiper-slide .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.hs-swiper-container .swiper-slide .slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7)
    );
    z-index: -1;
}

.hs-swiper-container .swiper-slide .slide-content h3 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hs-swiper-container .swiper-slide .slide-content p {
    font-size: 24px;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 767.98px) {
    .hs-swiper-container .swiper-slide .slide-content h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .hs-swiper-container .swiper-slide .slide-content p {
        font-size: 18px;
    }
}

.hs-swiper-container .swiper-button-next,
.hs-swiper-container .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
    margin: 0 20px;
}

.hs-swiper-container .swiper-button-next:hover,
.hs-swiper-container .swiper-button-prev:hover {
    background-color: #fff;
}

.hs-swiper-container .swiper-button-next:after,
.hs-swiper-container .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hs-swiper-container .swiper-pagination {
    bottom: 30px !important;
}

.hs-swiper-container .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
}

.hs-swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

@media (max-width: 767.98px) {
    .hs-swiper-container .swiper {
        height: 400px;
    }
    
    .hs-swiper-container .swiper-button-next,
    .hs-swiper-container .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    .hs-swiper-container .swiper-button-next:after,
    .hs-swiper-container .swiper-button-prev:after {
        font-size: 16px;
    }
}
