/* ===== BASIS & VARIABELEN ===== */
:root {
    --kleur-primair: #2EBFA5;
    --kleur-primair-donker: #259e89;
    --kleur-paars: #4E4187;
    --kleur-paars-licht: #5f52a0;
    --kleur-licht: #F8FFE5;
    --kleur-licht-warm: #f2f9da;
    --kleur-tekst: #3a3a3a;
    --kleur-tekst-licht: #5a5a5a;
    --kleur-wit: #fdfcfa;
    --schaduw: 0 2px 16px rgba(78, 65, 135, 0.08);
    --schaduw-hover: 0 4px 24px rgba(78, 65, 135, 0.14);
    --radius: 12px;
    --overgang: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--kleur-tekst);
    line-height: 1.7;
    background-color: var(--kleur-wit);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    line-height: 1.3;
    font-family: 'Josefin Sans', sans-serif;
}

h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--kleur-paars);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--kleur-paars);
}

a {
    color: var(--kleur-primair-donker);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== NAVIGATIE ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--overgang);
    background: transparent;
}

.navbar.scrolled {
    background: var(--kleur-wit);
    box-shadow: var(--schaduw);
    padding: 10px 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--kleur-paars);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-bus {
    flex-shrink: 0;
    display: block;
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--kleur-tekst);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--overgang);
}

.nav-links a:hover {
    color: var(--kleur-primair);
    text-decoration: none;
}

.btn-nav {
    background: var(--kleur-primair);
    color: var(--kleur-wit) !important;
    padding: 8px 20px;
    border-radius: 24px;
    transition: var(--overgang);
}

.btn-nav:hover {
    background: var(--kleur-primair-donker);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--kleur-tekst);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--kleur-licht) 0%, var(--kleur-licht-warm) 50%, #e8f5f1 100%);
    padding: 160px 0 100px;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--kleur-primair);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--kleur-paars);
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight {
    color: var(--kleur-primair);
}

.zonnetje {
    width: 0.8em;
    height: 0.8em;
    vertical-align: baseline;
    margin-left: 4px;
    color: var(--kleur-paars);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--kleur-tekst-licht);
    max-width: 650px;
    margin: 0 auto 32px;
}

.btn {
    display: inline-block;
    background: var(--kleur-primair);
    color: var(--kleur-wit);
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--overgang);
    box-shadow: 0 4px 12px rgba(46, 191, 165, 0.3);
}

.btn:hover {
    background: var(--kleur-primair-donker);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 191, 165, 0.4);
    text-decoration: none;
}

/* ===== HERO SPLIT ===== */
.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hero-tekst .hero-subtitle,
.hero-tekst h1,
.hero-tekst .hero-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-stappenplan {
    background: rgba(253, 250, 245, 0.75);
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 4px 24px rgba(78, 65, 135, 0.08);
    backdrop-filter: blur(4px);
}

.hero-stap-titel {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kleur-primair);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--kleur-primair) 8%, var(--kleur-primair) 92%, transparent);
    opacity: 0.2;
}

.hero-stap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    position: relative;
}

.hero-stap-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kleur-licht);
    border: 1px solid rgba(46, 191, 165, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: var(--overgang);
}

.hero-stap-accent .hero-stap-icon {
    background: var(--kleur-primair);
    border-color: var(--kleur-primair);
}

.hero-stap:hover .hero-stap-icon {
    background: var(--kleur-primair);
    border-color: var(--kleur-primair);
    transform: scale(1.1);
}

.hero-stap-body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stap-nr {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--kleur-primair);
    letter-spacing: 0.05em;
}

.hero-stap-naam {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--kleur-tekst);
    line-height: 1.3;
}

.hero-stap-meer {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--kleur-primair-donker);
    text-decoration: none;
}

.hero-stap-meer:hover {
    color: var(--kleur-primair);
    text-decoration: none;
}

.hero-stap-link {
    color: var(--kleur-tekst);
    text-decoration: none;
    font-weight: 500;
}

.hero-stap-link:hover {
    color: var(--kleur-primair);
    text-decoration: underline;
}

.stap-title-link {
    color: inherit;
    text-decoration: none;
}

.stap-title-link:hover {
    color: var(--kleur-primair);
    text-decoration: underline;
}

.stap-zonnetje {
    width: 1.2em;
    height: 1.2em;
    color: var(--kleur-paars);
}

/* ===== KERNWAARDEN ===== */
.kernwaarden {
    padding: 60px 0;
    background: var(--kleur-wit);
}

.waarden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.waarde-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    transition: var(--overgang);
}

.waarde-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--schaduw);
}

.waarde-icon-cirkel {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kleur-primair), var(--kleur-paars));
    margin: 0 auto 16px;
    opacity: 0.8;
}

.waarde-card p {
    color: var(--kleur-tekst-licht);
    font-size: 0.95rem;
}

/* ===== SECTIES ===== */
.sectie {
    padding: 80px 0;
}

.sectie-licht {
    background: var(--kleur-licht);
}

.sectie-accent {
    background: linear-gradient(135deg, var(--kleur-paars) 0%, var(--kleur-paars-licht) 100%);
    color: var(--kleur-wit);
}

.sectie-accent h2 {
    color: var(--kleur-wit);
}

.sectie-ondertitel {
    font-size: 1.15rem;
    color: var(--kleur-primair);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sectie-intro {
    font-size: 1.1rem;
    color: var(--kleur-tekst-licht);
    max-width: 700px;
    margin-bottom: 40px;
}

.sectie-accent .sectie-intro {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== TWEE KOLOMMEN ===== */
.twee-kolommen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.kolom-tekst p {
    margin-bottom: 16px;
    color: var(--kleur-tekst-licht);
}

.kolom-tekst-licht p {
    color: rgba(255, 255, 255, 0.9);
}

.kolom-tekst-licht ul {
    list-style: none;
    margin: 16px 0;
}

.kolom-tekst-licht ul li {
    padding: 6px 0 6px 24px;
    position: relative;
}

.kolom-tekst-licht ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--kleur-primair);
    font-weight: 700;
}

.quote {
    font-style: italic;
    font-size: 1.05rem;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.foto-placeholder {
    background: rgba(78, 65, 135, 0.06);
    border-radius: var(--radius);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kleur-tekst-licht);
    font-style: italic;
    font-size: 0.95rem;
}

.foto-placeholder-licht {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.sectie-foto {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: right bottom;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.foto-moniek {
    height: 450px;
    object-position: 75% 33%;
}

.skj-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--kleur-wit);
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
}

.skj-badge-footer {
    margin: 16px auto;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.skj-badge-hero {
    margin-top: 8px;
    margin-bottom: 16px;
    background: transparent;
    box-shadow: none;
}

.skj-badge-hero span {
    font-size: 0.55rem;
}

.skj-badge-hero .skj-logo {
    height: 34px;
}

.skj-logo {
    height: 40px;
    width: auto;
}

.skj-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--kleur-paars);
}

.skj-badge-footer span {
    color: var(--kleur-wit);
    font-size: 0.75rem;
}

/* ===== HULPVRAGEN ===== */
.hulpvragen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hulpvraag-item {
    background: var(--kleur-licht);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    transition: var(--overgang);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 3px solid var(--kleur-primair);
}

.hulpvraag-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--schaduw);
    border-left-color: var(--kleur-paars);
}

.hulpvragen-toelichting {
    margin-top: 32px;
    color: var(--kleur-tekst-licht);
    font-size: 0.95rem;
    max-width: 700px;
    line-height: 1.8;
}

/* ===== WERKWIJZE ===== */
.werkwijze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.werkwijze-card {
    background: var(--kleur-wit);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    transition: var(--overgang);
    border-top: 3px solid var(--kleur-primair);
}

.werkwijze-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--schaduw-hover);
}

.werkwijze-card p {
    color: var(--kleur-tekst-licht);
    font-size: 0.95rem;
}

.meer-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--kleur-primair-donker);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.meer-link:hover {
    color: var(--kleur-primair);
}

.werkwijze-extra {
    margin-top: 12px;
    font-size: 0.9rem;
}

.werkwijze-details {
    margin-top: 12px;
}

.werkwijze-details summary {
    cursor: pointer;
    color: var(--kleur-primair);
    font-weight: 500;
    font-size: 0.9rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.werkwijze-details summary::-webkit-details-marker {
    display: none;
}

.werkwijze-details summary::before {
    content: '\25B6';
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.werkwijze-details[open] summary::before {
    transform: rotate(90deg);
}

.werkwijze-details summary:hover {
    color: var(--kleur-primair-donker);
}

.werkwijze-details p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--kleur-tekst-licht);
}

/* Over Moniek uitklap */
.over-moniek-details {
    margin-top: 12px;
}

.over-moniek-details summary {
    cursor: pointer;
    color: var(--kleur-primair);
    font-weight: 500;
    font-size: 0.9rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.over-moniek-details summary::-webkit-details-marker {
    display: none;
}

.over-moniek-details summary::before {
    content: '\25B6';
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.over-moniek-details[open] summary::before {
    transform: rotate(90deg);
}

.over-moniek-details summary:hover {
    color: var(--kleur-primair-donker);
}

.over-moniek-details p {
    margin-top: 12px;
    line-height: 1.8;
}

/* Referenties uitklap */
.referenties-details {
    margin-top: 16px;
}

.referenties-details summary {
    cursor: pointer;
    color: var(--kleur-primair);
    font-weight: 500;
    font-size: 0.9rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.referenties-details summary::-webkit-details-marker {
    display: none;
}

.referenties-details summary::before {
    content: '\25B6';
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.referenties-details[open] summary::before {
    transform: rotate(90deg);
}

.referenties-details summary:hover {
    color: var(--kleur-primair-donker);
}

.referenties-details .referenties-grid {
    margin-top: 16px;
}

.werkwijze-toelichting {
    margin-top: 32px;
    color: var(--kleur-tekst-licht);
    font-size: 0.95rem;
    max-width: 700px;
    line-height: 1.8;
}

.werkwijze-voordelen {
    background: var(--kleur-wit);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
}

.werkwijze-voordelen h3 {
    margin-bottom: 16px;
}

.werkwijze-voordelen ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.werkwijze-voordelen ul li {
    padding-left: 24px;
    position: relative;
    color: var(--kleur-tekst-licht);
}

.werkwijze-voordelen ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--kleur-primair);
    font-weight: 700;
}

/* ===== VOOR SCHOLEN ===== */
.school-voordelen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.school-voordeel {
    background: var(--kleur-licht);
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--overgang);
}

.school-voordeel:hover {
    transform: translateY(-3px);
    box-shadow: var(--schaduw);
}

.school-voordeel strong {
    display: block;
    margin-bottom: 8px;
    color: var(--kleur-paars);
}

.school-voordeel p {
    color: var(--kleur-tekst-licht);
    font-size: 0.9rem;
}

/* ===== REFERENTIES ===== */
.referenties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.referentie {
    background: var(--kleur-wit);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    border-left: 3px solid var(--kleur-primair);
    transition: var(--overgang);
}

.referentie:hover {
    transform: translateY(-3px);
    box-shadow: var(--schaduw-hover);
}

.referentie p {
    color: var(--kleur-tekst-licht);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 12px;
}

.referenties-subkop {
    margin-top: 40px;
}

/* ===== FOTO GRID ===== */
.foto-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.foto-grid .sectie-foto {
    height: 280px;
}

.foto-grid .foto-klein {
    height: 220px;
}

.foto-grid-duo {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.foto-grid-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.foto-grid-links .sectie-foto {
    flex: 1;
    min-height: 0;
}

.foto-staand {
    width: 200px;
    height: auto;
    object-fit: cover;
    object-position: center 15%;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* ===== TARIEVEN ===== */
.tarieven-tekst {
    max-width: 700px;
}

.tarieven-tekst p {
    color: var(--kleur-tekst-licht);
    margin-bottom: 16px;
    font-size: 1rem;
}

.tarieven-tekst strong {
    color: var(--kleur-paars);
}

/* ===== CONTACT ===== */
.contact-sectie {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-item a {
    font-weight: 600;
    color: var(--kleur-paars);
}

.contact-item a:hover {
    color: var(--kleur-primair);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--kleur-paars);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--kleur-primair);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-tagline-klein {
    font-size: 0.75rem;
    margin-bottom: 16px;
    opacity: 0.85;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ===== VOORLEESKNOP ===== */
.voorlees-knop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--kleur-paars);
    color: var(--kleur-wit);
    border-radius: 30px;
    padding: 8px 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(78, 65, 135, 0.3);
    transition: var(--overgang);
    user-select: none;
}

.voorlees-knop:hover {
    background: var(--kleur-paars-licht);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 65, 135, 0.4);
}

.voorlees-knop.actief {
    background: var(--kleur-primair);
    box-shadow: 0 4px 16px rgba(46, 191, 165, 0.35);
}

.voorlees-knop.actief:hover {
    background: var(--kleur-primair-donker);
}

.voorlees-icoon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.voorlees-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ===== STAPPENPLAN ===== */
.stappenplan-timeline {
    position: relative;
    max-width: 700px;
}

.stappenplan-timeline::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--kleur-primair) 5%, var(--kleur-primair) 95%, transparent);
    opacity: 0.25;
}

.stap {
    display: flex;
    gap: 28px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(16px);
    animation: stapFadeUp 0.55s ease forwards;
}

.stap:nth-child(1) { animation-delay: 0.05s; }
.stap:nth-child(2) { animation-delay: 0.15s; }
.stap:nth-child(3) { animation-delay: 0.25s; }
.stap:nth-child(4) { animation-delay: 0.35s; }
.stap:nth-child(5) { animation-delay: 0.45s; }
.stap:nth-child(6) { animation-delay: 0.55s; }
.stap:nth-child(7) { animation-delay: 0.65s; }

@keyframes stapFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.stap-icon-wrap {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--kleur-licht);
    border: 1.5px solid rgba(46, 191, 165, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--overgang);
}

.stap:hover .stap-icon-wrap {
    background: var(--kleur-primair);
    border-color: var(--kleur-primair);
    transform: scale(1.06);
}

.stap-highlight .stap-icon-wrap {
    background: var(--kleur-primair);
    border-color: var(--kleur-primair);
}

.stap-content {
    padding-top: 8px;
    flex: 1;
}

.stap-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--kleur-primair);
    font-weight: 600;
    margin-bottom: 4px;
}

.stap-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kleur-paars);
    margin-bottom: 6px;
    line-height: 1.25;
}

.stap-tekst {
    font-size: 0.92rem;
    color: var(--kleur-tekst-licht);
    line-height: 1.7;
    margin-bottom: 0;
}

.stap-tekst + .stap-tekst {
    margin-top: 0.75rem;
}

.stap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.stap-tag {
    background: var(--kleur-licht);
    border: 1px solid rgba(46, 191, 165, 0.3);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.75rem;
    color: var(--kleur-tekst-licht);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .waarden-grid,
    .werkwijze-grid {
        grid-template-columns: 1fr;
    }

    .hulpvragen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .school-voordelen,
    .referenties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .twee-kolommen {
        grid-template-columns: 1fr;
    }

    .werkwijze-voordelen ul {
        grid-template-columns: 1fr;
    }

    .foto-grid {
        flex-direction: row;
    }

    .foto-grid .sectie-foto,
    .foto-grid .foto-klein {
        height: 250px;
        flex: 1;
        min-width: 0;
    }

    .foto-grid-duo {
        flex-direction: column;
    }

    .foto-staand {
        width: 100%;
        height: 300px;
    }

    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hero-tekst .hero-subtitle,
    .hero-tekst h1,
    .hero-tekst .hero-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 130px 0 70px;
    }
}

@media (max-width: 600px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--kleur-wit);
        padding: 20px 24px;
        box-shadow: var(--schaduw);
        gap: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hulpvragen-grid {
        grid-template-columns: 1fr 1fr;
    }

    .school-voordelen,
    .referenties-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .sectie {
        padding: 50px 0;
    }
}