/* --- Basisstijlen --- */
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* --- Hoofdcontainer --- */
.page-container {
    max-width: 900px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* --- Header met logo's --- */
.header {
    padding: 20px 40px;
    border-bottom: 1px solid #eeeeee;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 220px;
}

/* --- Hoofdinhoud --- */
.main-content {
    padding: 40px 50px;
    text-align: center;
}

.content-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

/* --- Icon --- */
.maintenance-icon {
    width: 64px;
    height: 64px;
    stroke: #005dab;
    margin-bottom: 20px;
}

h1 {
    color: #005dab;
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    color: #005dab;
    font-size: 1.5em;
    text-align: left;
    border-bottom: 2px solid #005dab;
    padding-bottom: 10px;
    margin-top: 40px;
    font-weight: 700;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

.intro-text {
    font-size: 1.2em;
    color: #333;
    text-align: center;
}

.final-text {
     text-align: center;
     margin-top: 40px;
}

/* --- Preview-box --- */
.preview-box {
    background-color: #f9f9f9;
    padding: 30px;
    margin-top: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.preview-box h3 {
    color: #005dab;
    margin-top: 0;
    font-size: 1.4em;
}

.preview-box p {
    text-align: center;
}

/* --- Knop --- */
.cta-button {
    display: inline-block;
    background-color: #005dab;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #004a8c;
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 40px;
    font-size: 0.9em;
}
