


        /* Video Section Styles */
        .video-section {
            background-color: #000;
            padding: 5rem 1rem;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .video-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .video-title {
            font-size: 2.2rem;
            color: white;
            margin-bottom: 3rem;
            display: inline-block;
        }
        
        .video-title .gradient-text {
            background: linear-gradient(135deg, #008c98 0%, #4CAF50 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Specific underline style for just this section title */
        .video-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #008c98);
            margin: 15px auto 0;
            transition: width 0.4s ease;
        }
        
        
        .video-section video {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: block;
        }
        
        .video-caption {
            color: #fff;
            margin-top: 1.5rem;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .video-section {
                padding: 3rem 1rem;
            }
            
            .video-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            .video-container {
                max-width: 90%;
            }
        }
        
        @media (max-width: 480px) {
            .video-section {
                padding: 2rem 1rem;
            }
            
            .video-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .video-title::after {
                width: 60px;
                height: 3px;
                margin: 10px auto 0;
            }
            
            .video-caption {
                font-size: 1rem;
            }
        }
