:root {
    --primary-color: #0A4A7A; /* Een iets dieper, modern blauw */
    --accent-color: #00BFA5; /* Een fris, technologisch groen/turquoise als accent */
    --background-color: #F4F7F6; /* Heel licht grijs/gebroken wit voor de body achtergrond */
    --container-background: #FFFFFF; /* Wit voor de content container */
    --text-color-dark: #2C3E50; /* Donkergrijs/blauw voor tekst */
    --text-color-light: #576C7F; /* Lichter grijs voor subtiele tekst */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
}

body {
    font-family: var(--font-secondary);
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    line-height: 1.7;
    /* Optioneel: subtiele achtergrondafbeelding met medisch-technologische of Haarlemse feel */
    /* background-image: url('images/background-subtle.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

/* .overlay { /* Gebruik dit als je een donkere/gekleurde overlay over een body background image wilt */
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-color: rgba(10, 74, 122, 0.5); */ /* Semi-transparant primair blauw */
    /* z-index: 0; */
/* } */


.container {
    background-color: var(--container-background);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 650px;
    width: 90%;
    z-index: 1; /* Zorgt dat container boven eventuele overlay komt */
    display: flex;
    flex-direction: column;
}

.site-header {
    margin-bottom: 25px;
}

.site-header .logo {
    max-width: 150px; /* Pas aan naar grootte van je logo */
    margin-bottom: 10px;
}

.site-header h1 {
    font-family: var(--font-primary);
    font-size: 2.8em; /* Responsief met em */
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: -1px;
}

.content-main {
    flex-grow: 1;
}

.hero h2 {
    font-family: var(--font-primary);
    font-size: 1.9em;
    color: var(--text-color-dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero .subtitle {
    font-size: 1.1em;
    color: var(--text-color-light);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--text-color-light);
}

.launch-info p {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1.05em;
}

.contact-preview {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-preview p {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: var(--text-color-light);
}

.contact-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover, .contact-button:focus {
    background-color: #009688; /* Iets donkerder accentkleur voor hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 191, 165, 0.3);
}

.site-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85em;
    color: var(--text-color-light);
}

.site-footer .social-links {
    margin-top: 10px;
}

.site-footer .social-links img {
    width: 24px; /* Grootte van social media iconen */
    margin: 0 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.site-footer .social-links img:hover {
    opacity: 1;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .container {
        padding: 25px 20px;
        margin: 20px auto; /* Zorgt voor wat ruimte aan boven- en onderkant op mobiel */
    }

    .site-header h1 {
        font-size: 2.2em;
    }

    .hero h2 {
        font-size: 1.6em;
    }

    .hero .subtitle {
        font-size: 1em;
    }
}