        .video-section {
            padding: 5rem 0;
            background: white;
            text-align: center;
        }

        .video-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .video-section p {
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .video-section .video-btn {
            background: linear-gradient(135deg, var(--color-accent), #7dd3fc);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(20, 33, 61, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .video-section .video-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px 0 rgba(20, 33, 61, 0.4), 0 0 16px 4px #7dd3fc;
        }