.fsh-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-left: calc( -50vw + 50% );
    margin-right: calc( -50vw + 50% );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fsh-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.fsh-bg-image {
    background-size: cover;
    background-position: center;
}

.fsh-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fsh-bg-slider.swiper-container, .fsh-bg-slider .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.fsh-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

.fsh-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.fsh-title {
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: bold;
}

.fsh-desc {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.fsh-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.fsh-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.fsh-btn:hover {
    opacity: 0.9;
}