:root {
    --font-heading: 'Roboto Flex', Arial, sans-serif;
    --font-body: 'Cairo', Arial, sans-serif;
    --h1-size: 84px;
    --h2-size: 60px;
    --h3-size: 48px;
    --h4-size: 40px;
    --h5-size: 32px;
    --tagline-size: 16px;
    --medium-normal: 20px;
    --regular-medium: 18px;
    --regular-normal: 18px;
    --small-link: 16px;
    --small-normal: 16px;
    --small-semi-bold: 16px;
}
body {
    background: #003366;
    color: #fff;
    font-family: var(--font-body);
    margin: 0;
    min-height: 100vh;
}
.cs-header {
    display: flex;
    align-items: center;
    padding: 18px 0 0 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.cs-logo {
    height: 38px;
    margin-right: 12px;
}
.cs-company {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.5px;
}
.cs-logo-text {
    height: 8.8px;
    margin-left: 8px;
    vertical-align: middle;
}
.coming-soon-wrapper {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 110px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
}
.cs-flex-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
}
.headline-line {
    display: block;
    text-align: left;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.headline-line + .headline-line {
    margin-top: 0 !important;
}
.headline {
    width: 100%;
    max-width: none;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 1em;
    line-height: 1 !important;
    letter-spacing: -1px;
    text-align: left;
}
.cs-flex-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.what-we-do-list {
    margin-bottom: 2.5rem;
    width: 100%;
}
.what-title {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    text-align: left;
}
.what-list {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}
.what-list > div {
    margin-bottom: 0;
    line-height: 1;
}
.coming-soon-text {
    font-family: var(--font-body);
    font-size: var(--h4-size);
    color: #999999;
    font-weight: 600;
    margin-top: auto;
    text-align: left;
}
@media (max-width: 900px) {
    .headline {
        font-size: 2.2rem;
    }
    .what-title, .what-list {
        font-size: 1.5rem;
    }
}
@media (max-width: 700px) {
    .coming-soon-wrapper {
        padding: 80px 16px 24px 16px;
        max-width: 100%;
    }
    .headline {
        font-size: 1.5rem;
    }
    .what-title, .what-list {
        font-size: 1.1rem;
    }
    .cs-header {
        padding: 12px 0 0 10px;
    }
    .cs-logo {
        height: 28px;
    }
}
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
}
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 51, 102, 0.6);
    z-index: 1;
}
.coming-soon-wrapper, .cs-header {
    position: relative;
    z-index: 2;
} 