.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 90%;
    height: 0;
    overflow: hidden;
    background: #ffffff;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the container without being stretched */
}
