 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       .video-c {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
            display: flex;
            align-items: center;
            gap: 80px;
            padding: 170px 0;
        }

       .content-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        
        .video-section {
            flex: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-container {
            width: 560px;
            height: 315px;
            background-color: #000000;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* YouTube iframe will fill this container exactly */
        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        /* Placeholder styling - remove when adding actual video */
        .video-placeholder {
            color: #666;
            font-size: 1.1rem;
            text-align: center;
        }
        @media (max-width: 1024px) {
            .video-c {
                flex-direction: column;
                gap: 60px;
                padding: 60px 30px;
            }

            .content-section {
                max-width: 100%;
                text-align: center;
            }

            .video-container {
                width: 100%;
                max-width: 560px;
                height: 315px;
            }
        }

        @media (max-width: 640px) {
            .video-c {
                padding: 40px 20px;
            }

            .content-section h1 {
                font-size: 2rem;
            }

            .video-container {
                height: 250px;
            }
        }
    </style>