        /* Main slideshow container - spans full width */
        .container {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        /* Image container holding all slides */
        .slide-image {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Individual slide images - positioned absolutely */
        .img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        /* Active slide - visible with full opacity */
        .img.active {
            opacity: 1;
        }
        @media (max-width: 600px) {
             .container {
            width: 100%;
            height: 250px;
            position: relative;
            overflow: hidden;
        }

        /* Image container holding all slides */
        .slide-image {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Individual slide images - positioned absolutely */
        .img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        /* Active slide - visible with full opacity */
        .img.active {
            opacity: 1;
        }
        }