.header-two {
    position: relative;
    width: 100%;
    height: 100vh; /* Je kunt dit aanpassen naar bijvoorbeeld 60vh of een vaste hoogte */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 20px solid #1e2024;
}

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

.header-two .container {
    position: relative;
    z-index: 2;
    color: white; /* Zorgt dat tekst zichtbaar blijft */
}

.info-section {
    /* background-color: #f9f9f9; */
    padding: 4rem 2rem;
    text-align: left;
}

.info-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    margin: 2rem;
}

.info-section p {
    max-width: 800px;
    /* margin: 0 auto; */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin: 2rem;
    text-align: left;
}

.project{
    margin-top: 2rem;
    margin-bottom: 8rem;
    
}