 /* Slider Container */
        .slider-container {
            position: relative;
            width: 100vw;
            height: 450px;
            overflow: hidden;
        }

        /* Slides Wrapper */
        .slides-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Individual Slide */
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .slide.active {
            opacity: 1;
        }

        .slide.fade-out {
            opacity: 0;
        }

        /* Slide Background */
        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: brightness(0.7);
            z-index: -1;
        }

        /* Slide Content - Left Aligned */
        .slide-content {
            text-align: left;
            color: white;
            padding: 20px;
            padding-left: 10%;
            max-width: 700px;
            animation: slideUp 1s ease-out;
            z-index: 2;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .slide-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            line-height: 1.6;
        }

        .slide-content .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #ff4458 0%, #cc0000 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 68, 88, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .slide-content .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 68, 88, 0.6);
            background: linear-gradient(135deg, #cc0000 0%, #ff4458 100%);
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow.prev {
            left: 30px;
        }

        .nav-arrow.next {
            right: 30px;
        }

        .nav-arrow svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* Bullet Points */
        .bullets {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .bullet:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.2);
        }

        .bullet.active {
            background: white;
            width: 40px;
            border-radius: 6px;
            border-color: white;
        }

        /* Responsive Design - Tablet */
        @media (max-width: 1024px) {
            .slider-container {
                height: 380px;
            }

            .slide-content h1 {
                font-size: 40px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .slide-content .cta-button {
                font-size: 14px;
                padding: 12px 32px;
            }
        }

        /* Responsive Design - Mobile Landscape */
        @media (max-width: 768px) {
            .slider-container {
                height: 320px;
            }

            .slide-content {
                padding-left: 5%;
                padding-right: 5%;
            }

            .slide-content h1 {
                font-size: 32px;
            }

            .slide-content p {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .nav-arrow {
                width: 45px;
                height: 45px;
            }

            .nav-arrow.prev {
                left: 15px;
            }

            .nav-arrow.next {
                right: 15px;
            }

            .bullets {
                bottom: 20px;
                gap: 10px;
            }

            .bullet {
                width: 10px;
                height: 10px;
            }

            .bullet.active {
                width: 30px;
            }
        }

        /* Responsive Design - Mobile Portrait */
        @media (max-width: 480px) {
            .slider-container {
                height: 280px;
            }

            .slide-content h1 {
                font-size: 26px;
                margin-bottom: 15px;
            }

            .slide-content p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .slide-content .cta-button {
                font-size: 13px;
                padding: 10px 28px;
            }

            .bullets {
                bottom: 15px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
            }

            .nav-arrow svg {
                width: 20px;
                height: 20px;
            }
        }

        /* Small Mobile Devices */
        @media (max-width: 360px) {
            .slider-container {
                height: 240px;
            }

            .slide-content h1 {
                font-size: 22px;
            }

            .slide-content p {
                font-size: 13px;
            }

            .slide-content .cta-button {
                font-size: 12px;
                padding: 8px 24px;
            }
        }