        /* VIDEO SECTION STYLES */
        .video-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            max-width: 100% !important;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .section-badge i {
            font-size: 16px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.2;
            max-width: 100% !important;
            width: 100% !important;
            white-space: nowrap;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .video-container-wrapper {
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .video-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            background: #000;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 991px) {
            .section-title {
                font-size: 2rem;
                white-space: normal;
            }
        }
        
        @media (max-width: 767px) {
            .video-section {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .section-title {
                font-size: 1.8rem;
                white-space: normal;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 479px) {
            .section-title {
                font-size: 1.5rem;
            }
        }