/* =============================
   CSS Reset & Variables
   ============================= */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: inherit; }
html, body { height: 100%; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: Verdana, Geneva, Tahoma, sans-serif; color: #0C2233; background-color: #FFFFFF; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: #0A3557; text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus { outline: 2px dashed #2A9DA6; outline-offset: 3px; }

:root {
  --primary: #0A3557;
  --secondary: #2A9DA6;
  --accent: #F1F5F8;
  --ink: #0C2233;
  --muted: #5C6B7A;
  --white: #FFFFFF;
  /* Creative accents for artistic highlights (kept minimal to honor brand) */
  --coral: #FF6B6B;
  --sun: #F5B700;
  --violet: #6B5B95;
  --shadow: rgba(10, 53, 87, 0.12);
  --shadow-strong: rgba(10, 53, 87, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
}

/* =============================
   Global Layout Helpers (Flex Only)
   ============================= */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}
main { display: flex; flex-direction: column; gap: 20px; }

/* Default section spacing (mobile-first) */
section { padding: 40px 0; }

/* MANDATORY SPACING & ALIGNMENT CLASSES */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =============================
   Typography
   ============================= */
h1, h2, h3, h4 { font-family: 'Trebuchet MS', 'Segoe UI', Arial, sans-serif; color: var(--primary); margin: 0; line-height: 1.2; }
h1 { font-size: 40px; letter-spacing: 0.2px; }
h2 { font-size: 28px; position: relative; padding-top: 8px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; color: var(--ink); }
p { margin: 0; font-size: 16px; color: var(--ink); }
.subheadline { font-size: 18px; color: var(--muted); max-width: 800px; }

/* Artistic underline for h2 */
h2::after { content: ""; position: absolute; left: 0; top: 0; width: 60px; height: 6px; background: var(--secondary); transform: skewX(-20deg); border-radius: 3px; }

/* Lists */
ul, ol { padding-left: 22px; margin: 0; display: flex; flex-direction: column; gap: 8px; }
ul { list-style: disc; }
ol { list-style: decimal; }

blockquote { margin: 0; padding: 16px 16px 16px 20px; border-left: 4px solid var(--secondary); background: var(--accent); color: var(--ink); border-radius: var(--radius-sm); }

/* =============================
   Header & Navigation
   ============================= */
header { background: var(--white); border-bottom: 1px solid #E6EDF2; position: relative; z-index: 50; }
header .content-wrapper { flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--primary); text-decoration: none; }
.brand img { height: 42px; width: auto; }
.tagline { display: none; font-size: 12px; color: var(--muted); }

.main-nav { display: none; align-items: center; gap: 16px; }
.main-nav a { color: var(--ink); font-weight: 600; padding: 8px 10px; border-radius: 8px; transition: color 0.2s ease, background-color 0.2s ease, transform 0.15s ease; }
.main-nav a:hover { background: var(--accent); color: var(--primary); transform: translateY(-1px); }

.header-cta { display: none; align-items: center; gap: 10px; }

/* =============================
   Buttons
   ============================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 999px; font-weight: 700; font-size: 15px; letter-spacing: 0.3px; transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; box-shadow: 0 2px 6px var(--shadow); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 12px var(--shadow); }
.btn:active { transform: translateY(0); box-shadow: 0 2px 6px var(--shadow); }

.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: #208D96; }

.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: #072A45; }

/* Artistic micro highlight on focus-visible */
.btn:focus-visible { box-shadow: 0 0 0 3px var(--accent), 0 0 0 6px var(--secondary); }

/* CTA group */
.cta-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* =============================
   Hero
   ============================= */
.hero { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.hero .content-wrapper { padding: 24px 0; }
.hero h1, .hero p, .hero a { color: #0968b3; }
.hero .subheadline { color: #0a3557; }

/* Decorative artistic shapes (purely decorative; absolute allowed) */
.hero::before { content: ""; position: absolute; width: 220px; height: 220px; right: -60px; top: -60px; background: var(--secondary); opacity: 0.25; border-radius: 50%; filter: blur(0.5px); z-index: 0; }
.hero::after { content: ""; position: absolute; width: 140px; height: 140px; left: -40px; bottom: -40px; background: var(--coral); opacity: 0.14; border-radius: 32% 68% 55% 45% / 40% 52% 48% 60%; z-index: 0; }
.hero .container, .hero .content-wrapper, .hero * { position: relative; z-index: 1; }

/* Trust badges */
.trust-badges ul { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.trust-badges li { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: #2a9da6; border: 1px solid rgba(255,255,255,0.18); padding: 8px 12px; border-radius: 999px; backdrop-filter: saturate(1.2); }
.trust-badges img { width: 16px; height: 16px; }

.supporting-points ul { display: flex; flex-wrap: wrap; gap: 8px 12px; color: #EAF4FB; }
.supporting-points li { background: #2a9da6; padding: 6px 10px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); }

/* =============================
   Text sections & Content
   ============================= */
.text-section { display: flex; flex-direction: column; gap: 12px; }
.text-section p img { display: inline-block; vertical-align: middle; margin-right: 8px; }

/* Artistic cards (shared) */
.card { background: var(--white); border: 1px solid #E6EDF2; border-radius: var(--radius); box-shadow: 0 6px 16px var(--shadow); padding: 20px; }
.card::after { content: ""; position: absolute; right: 14px; bottom: 14px; width: 40px; height: 4px; background: var(--sun); border-radius: 6px; opacity: 0.7; }

/* Testimonials - readability priority: dark text on light background */
.testimonial-card { background: var(--accent); color: var(--ink); border: 1px solid #DDE7EE; border-radius: var(--radius); box-shadow: 0 4px 10px var(--shadow); }
.testimonial-card p { margin: 0; }
.testimonial-card strong { color: var(--primary); }

/* Lists inside accent blocks */
section ul li strong { color: var(--primary); }

/* Quote accent inside testimonial (decorative) */
.testimonial-card::before { content: "\201C"; font-family: 'Trebuchet MS', Arial, sans-serif; font-size: 48px; color: var(--secondary); opacity: 0.2; margin-right: 6px; }

/* Numbers / Key figures chips */
section ul li strong { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; padding: 4px 10px; background: var(--accent); border: 1px solid #DDE7EE; border-radius: 10px; margin-right: 6px; }

/* =============================
   Footer
   ============================= */
footer { background: var(--primary); color: var(--white); margin-top: 20px; padding: 28px 0; }
footer .content-wrapper { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 24px; }
footer h3, footer h4, footer p, footer a, footer li { color: var(--white); }
footer a { text-decoration: underline; text-underline-offset: 3px; }
footer .text-section { flex: 1 1 220px; display: flex; flex-direction: column; gap: 10px; }
footer ul { list-style: none; padding: 0; gap: 8px; }

/* =============================
   Mobile Menu (Hamburger)
   ============================= */
.mobile-menu-toggle { position: fixed; right: 16px; top: 14px; z-index: 120; background: var(--secondary); color: var(--white); width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 14px var(--shadow-strong); transition: transform 0.2s ease, background-color 0.2s ease; }
.mobile-menu-toggle:hover { transform: translateY(-1px); background: #208D96; }

.mobile-menu { position: fixed; inset: 0; z-index: 110; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; background: rgba(10, 35, 56, 0.45); transform: translateX(100%); transition: transform 0.35s ease; }
.mobile-menu.open { transform: translateX(0); }

.mobile-nav { background: var(--white); width: 84%; max-width: 380px; margin-left: auto; height: 100%; display: flex; flex-direction: column; gap: 6px; padding: 80px 22px 22px; box-shadow: -10px 0 24px rgba(0,0,0,0.15); }
.mobile-nav a { display: flex; align-items: center; padding: 12px 10px; border-radius: 10px; color: var(--ink); font-weight: 600; transition: background-color 0.2s ease, transform 0.15s ease; }
.mobile-nav a:hover { background: var(--accent); transform: translateX(2px); }

.mobile-menu-close { position: absolute; right: 18px; top: 16px; width: 40px; height: 40px; border-radius: 10px; background: var(--primary); color: var(--white); box-shadow: 0 6px 14px var(--shadow-strong); display: flex; align-items: center; justify-content: center; }
.mobile-menu-close:hover { background: #072A45; }

/* Hide desktop nav on mobile */
@media (max-width: 991px) {
  .main-nav, .header-cta { display: none; }
  .tagline { display: none; }
}

/* Show desktop nav and hide burger on larger screens */
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
  .main-nav { display: flex; }
  .header-cta { display: flex; }
  .tagline { display: inline-flex; }
}

/* =============================
   Cookie Consent Banner & Modal
   ============================= */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 130; background: var(--white); color: var(--ink); border-top: 3px solid var(--secondary); box-shadow: 0 -8px 20px rgba(0,0,0,0.08); transform: translateY(100%); transition: transform 0.35s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container { padding: 14px 16px; }
.cookie-banner .content-wrapper { flex-direction: column; gap: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-btn { padding: 10px 14px; border-radius: 999px; font-weight: 700; box-shadow: 0 2px 6px var(--shadow); }
.cookie-btn.accept { background: var(--secondary); color: var(--white); }
.cookie-btn.reject { background: #EEF3F7; color: var(--ink); }
.cookie-btn.settings { background: var(--primary); color: var(--white); }
.cookie-btn:hover { transform: translateY(-1px); }

.cookie-modal { position: fixed; inset: 0; z-index: 140; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.cookie-modal.open { opacity: 1; pointer-events: auto; }
.cookie-modal-content { background: var(--white); color: var(--ink); width: 94%; max-width: 760px; border-radius: var(--radius-lg); box-shadow: 0 16px 36px rgba(0,0,0,0.18); padding: 22px; display: flex; flex-direction: column; gap: 16px; border: 1px solid #E6EDF2; }
.cookie-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 12px; border: 1px dashed #DDE7EE; border-radius: 12px; background: var(--accent); }
.cookie-row .label { font-weight: 700; color: var(--primary); }
.cookie-row .desc { color: var(--muted); }

/* Toggle switch */
.toggle { position: relative; width: 48px; height: 28px; background: #D6E2EA; border-radius: 999px; transition: background-color 0.2s ease; display: inline-flex; align-items: center; padding: 2px; }
.toggle.knob-on { background: var(--secondary); }
.toggle .knob { width: 24px; height: 24px; background: #fff; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.15); transform: translateX(0); transition: transform 0.2s ease; }
.toggle.knob-on .knob { transform: translateX(20px); }

/* =============================
   Creative Artistic Touches (non-intrusive)
   ============================= */
/* Color bands for sections */
section:nth-of-type(odd) { background: #FFFFFF; }
section:nth-of-type(even) { background: var(--accent); }

/* Accent divider */
hr { border: none; height: 2px; background: var(--secondary); width: 100%; border-radius: 2px; }

/* Links in content */
.text-section a { color: var(--secondary); font-weight: 700; text-underline-offset: 3px; }
.text-section a:hover { color: #208D96; }

/* =============================
   Utilities & Components
   ============================= */
.content-grid > * { flex: 1 1 280px; }
.card-container > .card { flex: 1 1 260px; }
.text-image-section > * { flex: 1 1 320px; }

/* Feature Item */
.feature-item { background: var(--white); border: 1px solid #E6EDF2; border-radius: var(--radius); padding: 16px; box-shadow: 0 6px 16px var(--shadow); }
.feature-item h4 { margin-top: 4px; }

/* Tables (if appear in content) */
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid #E6EDF2; }
th { color: var(--primary); }

/* Badges & chips */
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; background: var(--accent); color: var(--ink); border: 1px solid #DDE7EE; font-weight: 700; font-size: 12px; }

/* =============================
   Page Specific Minor Tweaks
   ============================= */
/* Kerncijfers list alignment */
section h2 + ul { display: flex; flex-wrap: wrap; gap: 12px 16px; padding-left: 0; list-style: none; }

/* Contact details inline icons */
.text-section p img { width: 18px; height: 18px; }
.text-section p a { text-decoration: underline; text-underline-offset: 3px; }

/* =============================
   Responsive Rules (Mobile-first)
   ============================= */
@media (min-width: 576px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
}

@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  .hero .content-wrapper { padding: 32px 0; }
  .subheadline { font-size: 20px; }
  /* Align text-image sections side-by-side on tablet/desktop */
  .text-image-section { flex-direction: row; }
}

@media (min-width: 992px) {
  header .content-wrapper { padding: 16px 0; }
  .tagline { font-size: 12px; opacity: 0.9; }
  .cta-group { gap: 14px; }
  section { padding: 56px 0; }
}

/* =============================
   Accessibility & Print
   ============================= */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  a { text-decoration: underline; }
}

/* =============================
   Final Touches & Safety Spacing
   ============================= */
/* Ensure minimum spacing between stacked sections and blocks */
section + section { margin-top: 10px; }
.content-wrapper > * + * { margin-top: 6px; }

/* Prevent overlaps by default spacing with flex gaps and padding already in place. */
/* No absolute positioning used for content blocks/cards; only decorative and close button. */
