body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
        }
        .video-section {
            width: 100%;
            height: 100vh; /* Full viewport height */
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #000; /* Optional: Background color */
        }
        .video-container {
            width: 80%; /* 80% of the width of the viewport */
            max-width: 1200px; /* Maximum width to control the size */
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }