* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body, header {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: white;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

header {
    position: relative;
    z-index: 1;
    padding: 60px;
}

.main-nav {
    max-width: 1021px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background: #ffffff;
    border-radius: 0px;
}

.logo {
    padding-left: 30px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

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

.center-text p {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
}

.contact p, .contact a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.contact {
    line-height: 1.1;
    padding-right: 30px;
}

.contact a:hover {
    opacity: 0.8;
}

.mobile-text {
    display: none;
}

.mobile-header-card {
    display: none;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-header-card {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto 0 auto;
        padding: 0;
        background: none;
        box-sizing: border-box;
    }
    .mobile-header-content {
        background: #fff;
        width: 99vw;
        max-width: none;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 12px 8px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 18px;
    }
    .mobile-card-logo {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: auto;
        margin-bottom: 0;
        margin-right: 0;
    }
    .mobile-card-logo img {
        height: 62px;
        width: auto;
        display: block;
    }
    .mobile-cols {
        display: flex;
        flex-direction: row;
        gap: 2px;
        width: 100%;
        justify-content: flex-start;
    }
    .mobile-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: #222;
        font-weight: 600;
        text-align: left;
        line-height: 1.3;
        min-width: 100px;
    }
   
} 