.video-background-module {
    position: relative;
    padding: 200px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.video-background-module__background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay styling */
.video-background-module__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 60% black overlay */
    z-index: 2;
}

.video-background-module__content-wrapper {
    position: relative;
    z-index: 3; /* Ensure content appears above overlay */
    max-width: 1064px;
    padding: 0px;
}

.video-background-module__heading {
    color: white;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 150% */
}

@media (max-width: 767px) {
    .video-background-module__heading {
        font-size: 28px;
    }
  .video-background-module {
    padding-left: 40px;
    padding-right: 40px;
}
