:root {
 --primary-color: #0D47A1; /* Donkerblauw */
 --primary-dark: #002171;
 --secondary-color: #00838F; /* Teal */
 --text-dark: #212529;
 --text-light: #495057;
 --text-muted: #6c757d;
 --bg-light: #f8f9fa;
 --bg-white: #ffffff;
 --border-color: #dee2e6;
 --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
 --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

body {
 font-family: var(--font-main);
 line-height: 1.7;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
 margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}

a:hover {
 color: var(--primary-dark);
 text-decoration: underline;
}

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

.centered {
 text-align: center;
 margin-left: auto;
 margin-right: auto;
}

/* Header & Nav */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.85);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}

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

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
}
.nav-logo:hover { text-decoration: none; }

.nav-links {
 display: flex;
 gap: 40px;
 list-style: none;
}

.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
 text-decoration: none;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}
.nav-links a:hover { text-decoration: none; }

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Sections */
.section {
 padding: 100px 0;
}
.bg-light { background-color: var(--bg-light); }

.section-header {
 margin-bottom: 60px;
 max-width: 750px;
}

.section-label, .badge {
 display: inline-block;
 background: var(--secondary-color);
 color: white;
 padding: 8px 20px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 1rem;
}
.badge { background-color: var(--primary-color); }

.section-title { margin-bottom: 1.5rem; }
.section-subtitle {
 font-size: 1.15rem;
 color: var(--text-muted);
 line-height: 1.8;
}

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 14px 32px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn-primary {
 background: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
}

.btn-secondary {
 background: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background: var(--primary-color);
 color: white;
}

/* Hero Section */
.page-hero {
 padding-top: 180px;
 padding-bottom: 120px;
 background: var(--bg-light);
}

.hero-inner {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

.hero-copy {
 max-width: 700px;
 text-align: center;
 margin: 0 auto;
}

.hero-copy h1 { margin-bottom: 1.5rem; }

.hero-copy p {
 font-size: 1.2rem;
 color: var(--text-muted);
 line-height: 1.8;
 margin-bottom: 2.5rem;
}

.hero-actions {
 display: flex;
 justify-content: center;
 gap: 1rem;
}

/* Cards */
.cards-grid {
 display: grid;
 gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
 background: white;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
 overflow: hidden;
}

.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}

.card-image-top {
 width: 100%;
 height: 220px;
 object-fit: cover;
}

.card-body {
 padding: 2rem;
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}

.card-title {
 font-size: 1.3rem;
 margin-bottom: 1rem;
}

.card-text {
 flex-grow: 1;
 margin-bottom: 1.5rem;
}

.card-button {
 align-self: flex-start;
 font-weight: 600;
 text-decoration: none;
}
.card-button:hover { text-decoration: none; }

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-height: 450px;
 width: 100%;
}
.styled-list {
 list-style: none;
 padding-left: 0;
 margin-top: 1.5rem;
 margin-bottom: 2rem;
}
.styled-list li {
 padding-left: 2rem;
 position: relative;
 margin-bottom: 1rem;
}
.styled-list li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--secondary-color);
 font-weight: 700;
}

/* Timeline */
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.timeline::after {
 content: '';
 position: absolute;
 width: 2px;
 background-color: var(--border-color);
 top: 0;
 bottom: 0;
 left: 40px;
}
.timeline-step {
 padding: 10px 40px 30px 100px;
 position: relative;
}
.timeline-number {
 position: absolute;
 left: 17px;
 top: 10px;
 width: 46px;
 height: 46px;
 border-radius: 50%;
 background: var(--primary-color);
 color: white;
 font-size: 1.2rem;
 font-weight: 700;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 1;
 border: 3px solid var(--bg-light);
}
.timeline-step h3 { font-size: 1.3rem; }

/* CTA Section */
.cta-section-inner {
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 color: white;
 padding: 4rem;
 border-radius: var(--radius-lg);
 text-align: center;
}
.cta-section-inner h2 {
 color: white;
}
.cta-section-inner p {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

/* Footer */
.footer {
 background: var(--text-dark);
 color: var(--text-muted);
 padding: 80px 0 30px;
 margin-top: 100px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 50px;
 margin-bottom: 50px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 1rem;
 display: block;
}
.footer-logo:hover { text-decoration: none; }
.footer-description {
 line-height: 1.8;
 margin-bottom: 1rem;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 1.5rem;
}
.footer-links, .footer-contact {
 list-style: none;
}
.footer-links li, .footer-contact li {
 margin-bottom: 0.8rem;
}
.footer-links a, .footer-contact a {
 color: var(--text-muted);
 text-decoration: none;
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
 text-decoration: underline;
}
.footer-contact p { margin: 0; }

.footer-bottom {
 border-top: 1px solid #495057;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}
.footer-legal-links a {
 color: var(--text-muted);
 margin-left: 20px;
}

/* About Page */
.page-header-section {
 padding: 140px 0 80px;
 background: var(--bg-light);
}
.value-card h3 { color: var(--primary-color); }
.team-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.team-member-card {
 text-align: center;
}
.team-photo {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1.5rem;
 box-shadow: var(--shadow-md);
}
.team-member-name {
 font-size: 1.3rem;
 margin-bottom: 0.25rem;
}
.team-member-title {
 color: var(--secondary-color);
 font-weight: 600;
 margin-bottom: 1rem;
}
.team-member-bio { font-size: 0.95rem; }

/* Contact Page */
.contact-grid {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 50px;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
 display: block;
 font-weight: 600;
 margin-bottom: 0.5rem;
 color: var(--text-dark);
}
.form-control {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: white;
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}
textarea.form-control { resize: vertical; }
.form-submit-btn { width: 100%; }

.contact-info-card {
 background: var(--bg-light);
 padding: 2rem;
 border-radius: var(--radius-lg);
}
.contact-info-card h3 { margin-bottom: 2rem; }
.contact-info-item { margin-bottom: 1.5rem; }
.contact-info-item strong { display: block; margin-bottom: 0.5rem; }
.contact-info-item p { margin: 0; line-height: 1.6; }
.contact-info-item a { text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }
.map-container { padding-top: 0; }
.google-maps-embed iframe { border-radius: var(--radius-lg); }

/* Thank You page */
.thank-you-section {
 padding: 140px 0;
 text-align: center;
}
.thank-you-actions { margin-top: 3rem; display: flex; justify-content: center; gap: 1rem; }

/* Legal Pages */
.legal-content { padding-top: 40px; }
.legal-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.legal-content p, .legal-content li { margin-bottom: 1rem; }
.legal-content ul { padding-left: 2rem; }
.cookie-table-wrapper { overflow-x: auto;}
.cookie-table { width: 100%; border-collapse: collapse; margin: 2rem 0;}
.cookie-table th, .cookie-table td { padding: 1rem; border: 1px solid var(--border-color); text-align: left; }
.cookie-table th { background: var(--bg-light); }

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--text-dark);
 color: white;
 padding: 1.5rem 2rem;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 z-index: 2000;
 box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}
.cookie-banner p { margin: 0; }
.cookie-banner a { color: white; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }

/* Animations */
.fade-in {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
 opacity: 1;
 transform: translateY(0);
}
.timeline-step, .card {
 transition-delay: calc(var(--delay, 0) * 100ms);
}
.fade-in:nth-child(1) { --delay: 1; }
.fade-in:nth-child(2) { --delay: 2; }
.fade-in:nth-child(3) { --delay: 3; }
.fade-in:nth-child(4) { --delay: 4; }
.fade-in:nth-child(5) { --delay: 5; }
.fade-in:nth-child(6) { --delay: 6; }

/* Responsive */
@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .media-object { grid-template-columns: 1fr; gap: 40px; }
 .media-object .media-visual { order: -1; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .contact-grid { grid-template-columns: 1fr; }
 .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
 html { font-size: 15px; }
 .section { padding: 80px 0; }
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .team-grid { grid-template-columns: 1fr; }
 
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: white;
 flex-direction: column;
 padding: 100px 40px;
 gap: 30px;
 align-items: center;
 justify-content: center;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-links a { font-size: 1.5rem; }
 .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-bottom { flex-direction: column; gap: 20px; }
 .footer-legal-links { display: flex; flex-direction: column; gap: 10px; }
 .footer-legal-links a { margin-left: 0; }
 
 .cookie-banner { flex-direction: column; text-align: center; }
}