/* Algemene pagina-instellingen */
body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #0f1115;          /* Diep donkergrijs/blauw */
    color: #e5e7eb;               /* Zacht lichtgrijs */
    margin: 0;
    padding: 40px;
    line-height: 1.6;
}

/* Accentkleuren */
:root {
    --accent: #4f9cff;            /* Venturisation-blauw */
    --accent-soft: #3b82f6;       /* Zachtere variant */
}

/* Koppen */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent);
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 5px;
}

h2 {
    margin-top: 30px;
    font-size: 1.6rem;
    color: var(--accent-soft);
}

h3 {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #9abaff;
}

/* Lijsten */
ul, li {
    margin-left: 20px;
}

li {
    margin-bottom: 6px;
}

/* Horizontale lijn */
hr {
    border: none;
    border-top: 1px solid #2a2d33;
    margin: 25px 0;
}

/* Optionele card-styling voor secties */
section {
    background: #16191f;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    margin-bottom: 25px;
    border: 1px solid #1f242c;
}

/* Links (voor later als je ze toevoegt) */
a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}