        .banner-container {
            position: relative;
            width: 100%;
            background-color: #111827;
            overflow: hidden;
            /* Default Mobile Height */
            height: 400px; 
            /* Ensure local reset for box model */
            box-sizing: border-box;
        }

        .banner-container * {
            box-sizing: border-box;
        }

        /* Responsive Height */
        @media (min-width: 768px) {
            .banner-container {
                height: 450px;
            }
        }

        @media (min-width: 1024px) {
            .banner-container {
                height: 600px; /* Target 1920x600 ratio */
            }
        }

        .slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 0;
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            z-index: 10;
            pointer-events: auto;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
        }

        .slide-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        @media (min-width: 768px) {
            .slide-content {
                align-items: flex-start;
                justify-content: flex-end;
                text-align: left;
                padding-bottom: 80px;
                padding-left: 80px;
            }
        }

        .slide-text-wrapper {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.7s ease-out;
            transition-delay: 0.3s;
        }

        .slide.active .slide-text-wrapper {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: white;
            margin: 0 0 12px 0;
            text-shadow: 0 4px 6px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .slide-title { font-size: 48px; }
        }
        
        @media (min-width: 1024px) {
            .slide-title { font-size: 60px; }
        }

        .slide-subtitle {
            font-size: 14px;
            color: #e5e7eb;
            margin: 0 0 24px 0;
            max-width: 600px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.5;
        }

        @media (min-width: 768px) {
            .slide-subtitle { font-size: 18px; }
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: #111827;
            padding: 8px 24px;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            font-size: 14px;
        }

        .cta-button:hover {
            background-color: #eff6ff;
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .cta-button:active {
            transform: scale(0.95);
        }

        /* Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            color: white;
            border: none;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s;
            opacity: 0; /* Hidden by default */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .banner-container:hover .nav-arrow {
            opacity: 1;
        }

        .nav-arrow:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .nav-arrow.prev { left: 20px; }
        .nav-arrow.next { right: 20px; }

        @media (max-width: 768px) {
            .nav-arrow { display: none; }
        }

        /* Dots */
        .dots-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            padding: 0;
        }

        .dot.active {
            width: 32px;
            background-color: white;
            border-radius: 9999px;
        }

        .swipe-hint {
            position: absolute;
            bottom: 50px;
            width: 100%;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            pointer-events: none;
            z-index: 15;
            display: block;
        }
        @media (min-width: 768px) {
            .swipe-hint { display: none; }
        }