:root {
    --primary-blue: #006087;
    --light-blue: #93b0c5;
    --yellow: #dddc01;
    --black: #101820;
    --grey: #E7E7EC;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--grey);
    color: var(--black);
}

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 90%;
}

.logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.strapline {
    font-size: 1.3em;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.coming-soon {
    font-size: 1.2em;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.company-details {
    margin-top: 2rem;
    font-size: 0.9em;
    color: var(--black);
}

.project-info {
    font-style: italic;
    color: var(--light-blue);
    margin-top: 1rem;
}
