        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
            padding: 0;
        }

        .voc-gallery-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .voc-gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .voc-gallery-header {
            text-align: center;
            margin-bottom: 50px;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .voc-gallery-title {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .voc-gallery-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        .voc-slider-wrapper {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .voc-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .voc-slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform;
        }

        .voc-slide {
            min-width: 100%;
            position: relative;
            overflow: hidden;
        }

        .voc-slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .voc-slide:hover img {
            transform: scale(1.05);
        }

        .voc-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            color: #2c3e50;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .voc-nav-btn:hover {
            background: #3498db;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .voc-prev-btn {
            left: 20px;
        }

        .voc-next-btn {
            right: 20px;
        }

        .voc-dots-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
        }

        .voc-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .voc-dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        .voc-dot:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.1);
        }

        .voc-thumbnails {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            overflow-x: auto;
            padding: 10px 0;
            justify-content: center;
            flex-wrap: wrap;
        }

        .voc-thumbnail {
            flex-shrink: 0;
            width: 80px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            opacity: 0.7;
        }

        .voc-thumbnail:hover,
        .voc-thumbnail.active {
            opacity: 1;
            border-color: #fff;
            transform: scale(1.1);
        }

        .voc-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .voc-slide-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            z-index: 10;
        }

        .voc-autoplay-toggle {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            color: #2c3e50;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .voc-autoplay-toggle:hover {
            background: #3498db;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .voc-gallery-title {
                font-size: 2.4rem;
            }
            
            .voc-slide img {
                height: 400px;
            }
            
            .voc-thumbnails {
                gap: 10px;
            }
            
            .voc-thumbnail {
                width: 70px;
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            .voc-gallery-section {
                padding: 40px 0;
            }
            
            .voc-gallery-container {
                padding: 0 15px;
            }
            
            .voc-gallery-header {
                padding: 30px 20px;
                margin-bottom: 30px;
            }
            
            .voc-gallery-title {
                font-size: 2rem;
            }
            
            .voc-gallery-subtitle {
                font-size: 1rem;
            }
            
            .voc-slider-wrapper {
                padding: 20px;
            }
            
            .voc-slide img {
                height: 300px;
            }
            
            .voc-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .voc-prev-btn {
                left: 10px;
            }
            
            .voc-next-btn {
                right: 10px;
            }
            
            .voc-thumbnails {
                gap: 8px;
                justify-content: flex-start;
            }
            
            .voc-thumbnail {
                width: 60px;
                height: 45px;
            }
            
            .voc-slide-counter,
            .voc-autoplay-toggle {
                font-size: 12px;
                padding: 6px 10px;
            }
        }

        @media (max-width: 480px) {
            .voc-gallery-title {
                font-size: 1.6rem;
            }
            
            .voc-slide img {
                height: 250px;
            }
            
            .voc-slider-wrapper {
                padding: 15px;
            }
            
            .voc-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .voc-thumbnails {
                display: none;
            }
        }

        /* Animation Classes */
        .voc-fade-in {
            animation: vocFadeIn 0.8s ease-in-out;
        }

        @keyframes vocFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Touch/Swipe indicators */
        .voc-slider-container.swiping {
            cursor: grabbing;
        }

        .voc-slider-container:active {
            cursor: grabbing;
        }