/* --- BASIS VARIABELEN (Kopieer dit zodat het bestand los werkt) --- */
:root {
    --primary-color: #0056b3; 
    --secondary-color: #00a8cc;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f4f8fa;
    --transition: all 0.3s ease;
}

/* --- PAGE HEADER (Kleine Hero) --- */
.page-header {
    background: url('../img/v2.jpeg') no-repeat center center/cover; /* Zelfde als home, of andere foto */
    height: 40vh; /* Minder hoog dan home */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.header-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 86, 179, 0.8); /* Iets donkerder blauw */
}

.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }
.page-header p { font-size: 1.2rem; font-weight: 300; }

/* --- SECTIE ALGEMEEN --- */
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 10px; }
.sub-heading { color: var(--secondary-color); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; font-size: 0.9rem; }
/* --- STORY SECTION (Aangepast voor transparante foto) --- */
.split-layout { display: flex; gap: 60px; align-items: center; }
.story-content { flex: 1; }
.story-image { flex: 1; position: relative; }

.story-content h2 { margin-bottom: 20px; font-size: 2rem; line-height: 1.3; }
.story-content p {
    margin-bottom: 15px;
    color: #222; /* Veel donkerder grijs (bijna zwart) voor betere leesbaarheid */
    font-size: 1.05rem; /* Optioneel: Ietsjes groter leest vaak ook prettiger */
    line-height: 1.8; /* Iets meer ruimte tussen de regels */
}
.quote-box {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    color: var(--text-dark);
}
.quote-box cite { display: block; margin-top: 10px; font-weight: 600; font-style: normal; font-size: 0.9rem; }

.story-image img { 
    width: 100%; 
    /* Geen border-radius of box-shadow op het blok, want het is transparant */
    position: relative; 
    z-index: 2;
    /* Dit zorgt dat de schaduw de contouren van de mensen volgt i.p.v. een vierkant blok */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

/* Decoratief vlak achter de transparante foto */
.img-decor {
    position: absolute; 
    bottom: 0; 
    right: -20px;
    width: 90%; 
    height: 80%; /* Iets lager zodat de hoofden er 'uit' steken */
    border-radius: 20px;
    z-index: 1;
}

/* Responsive fix voor mobiel */
@media (max-width: 768px) {
    .img-decor {
        right: 0;
        width: 100%;
        /* Op mobiel mag het vlak wel blijven voor contrast */
        display: block; 
    }
}

/* --- STATS BAR --- */
.stats-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 50px 0;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 30px;
}
.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color); /* Lichte kleur voor de cijfers */
    margin-bottom: 5px;
}
.stat-item .label { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- KERNWAARDEN (Values) --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.icon-circle {
    width: 70px; height: 70px;
    background: #e6f7fa;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    transition: var(--transition);
}
.value-card:hover .icon-circle { background: var(--primary-color); color: #fff; }

/* --- PROCES (Stappenplan) --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.step {
    text-align: center;
    position: relative;
    padding: 20px;
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 86, 179, 0.1); /* Heel licht transparant nummer */
    line-height: 1;
    margin-bottom: -20px; /* Overlapt met tekst */
    position: relative; z-index: 0;
}
.step h3 { position: relative; z-index: 1; margin-bottom: 10px; color: var(--text-dark); }
.step p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: #222; /* Aangepast van var(--text-light) naar donkerder grijs/zwart */
    font-weight: 500; /* Optioneel: maakt de letters iets dikker voor betere leesbaarheid */
}

/* --- CTA (Bestaand) --- */
.cta-bar { background: var(--primary-color); color: #fff; padding: 60px 0; }
.cta-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.btn-light { background: #fff; color: var(--primary-color); padding: 12px 30px; border-radius: 5px; font-weight: 600; transition: var(--transition); }
.btn-light:hover { background: #222; color: #fff; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .split-layout { flex-direction: column; }
    .page-header h1 { font-size: 2rem; }
    .cta-bar .container { text-align: center; flex-direction: column; }
    .img-decor { display: none; /* Te complex op mobiel soms */ }
}