* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.header {
    transition: background-color 0.3s, color 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0; /* Ensure the header spans the full width */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
}

.header a {
    color: white;
}

.company-title a {
    font-size: 1.5rem;
    text-decoration: none;
}

.header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    color: black;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.header.fixed a {
    color: black;
}

.navigation a {
    margin-left: 20px;
    text-decoration: none;
}

.overlay-text {
    text-align: center;
}

.main-content {
    padding: 20px;
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40vh;
    padding: 20px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    scroll-margin-top: 80px;
}

.content-section.alternate {
    flex-direction: row-reverse;
}

.text-content {
    width: 50%;
}

.section-video {
    width: 40%;
    border-radius: 10px; /* Rounded corners */
}