.video-section {
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    position: relative; /* Normal flow, so it scrolls with the page */
    overflow: hidden;
}

.custom-fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area while maintaining aspect ratio */
    display: block;
}

.next-section {
    height: auto; /* Content of the next section */
    padding: 50px;
    background-color: #f5f5f5;
}