   .hero-slider-block {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    /* Make slides fill the height of the slider */
    .hero-slide {
        position: relative;
        width: 100%;
        height: 100% !important;
        /* Force 100% height */
        overflow: hidden;
    }

    /* Make sure the slick-track fills the height */
    .hero-slider .slick-track,
    .hero-slider .slick-list {
        height: 100% !important;
    }

    .hero-slide-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-slide-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-slide-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
    }

    .hero-slide-content {
        position: relative;
        z-index: 2;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        color: #fff;
    }

    .hero-slide-title {
        color: white;
        margin: 0 0 20px;
        max-width: 1000px;
    }

    .hero-slide-subtitle {
        color: white;
        margin: 0 0 20px;
        max-width: 800px;
		font-size: 18px;
    }

    .hero-slide-link {
        display: inline-block;
        background-color: var(--secondary);
        color: white;
        padding: 12px 24px;
        border-radius: 4px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        font-weight: bold;
    }

    .hero-slide-link:hover {
        background-color: var(--primary) !important;
        color: white !important;
    }

    /* Slick overrides */
    .hero-slider .slick-dots {
        position: absolute;
        bottom: 20px;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
        z-index: 3;
    }

    .hero-slider .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .hero-slider .slick-dots li button {
        display: block;
        width: 12px;
        height: 12px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        text-indent: -9999px;
        cursor: pointer;
    }

    .hero-slider .slick-dots li.slick-active button {
        background-color: #fff;
    }

    .hero-slider .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .hero-slider .slick-arrow:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .hero-slider .slick-prev {
        left: 20px;
    }

    .hero-slider .slick-next {
        right: 20px;
    }

    /* Responsive styles */
    @media screen and (max-width: 1199px) {
        .hero-slide-title {
            max-width: 800px;
        }

        .hero-slide-subtitle {
            max-width: 600px;
        }
    }

    @media screen and (max-width: 991px) {
        .hero-slide-title {
            max-width: 600px;
        }

        .hero-slide-subtitle {
            max-width: 500px;
        }

        .hero-slider .slick-arrow {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
    }
