/* =======================================================
   CSS RESET & NORMALIZE (for consistent base)
======================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f9fafb;
  min-height: 100vh;
  color: #17375E;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
input, button, textarea, select {
  font: inherit;
}
ul, ol {
  list-style: none;
}


/* =======================================================
   BRAND FONTS (use Google Fonts in <head> for Montserrat & Roboto)
======================================================= */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #F7F7F8;
  color: #17375E;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.2;
  color: #17375E;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.section h2 {
  position: relative;
  padding-left: 14px;
}
.section h2::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 8px;
  width: 6px;
  height: 24px;
  background: #F2C94C;
  border-radius: 3px;
}


/* =======================================================
   LUXURY PREMIUM COLORS & SHADOWS
======================================================= */
:root {
  --primary: #17375E;
  --secondary: #3078A2;
  --accent: #F2C94C;
  --text: #1a2536;
  --background: #f9fafb;
  --surface: #fff;
  --gold: #F2C94C;
  --lux-shadow: 0 6px 32px rgba(27,34,49,0.08), 0 1px 5px rgba(0,0,0,0.05);
  --border-radius: 16px;
}


/* =======================================================
   CONTAINER & GENERAL LAYOUT
======================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* FLEXBOX LAYOUT PATTERNS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--lux-shadow);
  overflow: hidden;
  padding: 32px 24px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 24px 20px 24px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(23, 55, 94, 0.10);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 450px;
  border: 1px solid #ece4c3;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 36px rgba(23, 55, 94, 0.23);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* =======================================================
   HEADER & NAVIGATION
======================================================= */
header {
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(23, 55, 94, 0.07);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  padding: 8px 0;
  color: var(--primary);
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #F9EFA4 0%, #F2C94C 99%);
  color: #17375E;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 11px 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 16px rgba(242, 201, 76, 0.10);
  transition: box-shadow 0.18s, background 0.18s;
  margin-left: 22px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #ffe793 0%, #ffd25a 100%);
  box-shadow: 0 4px 32px rgba(215, 174, 36, 0.16);
  color: #005a88;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--surface);
  border: 2px solid #e7e3d0;
  font-size: 2em;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-left: 18px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  z-index: 22;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  border-color: var(--gold);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,55,94,.98);
  z-index: 130;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.8,.27,.42,1);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.2em;
  margin: 24px 32px 16px auto;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff7d4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  gap: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 0;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(242, 201, 76, 0.23);
  color: var(--accent);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }
  header .container {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 700px) {
  header img {
    height: 34px;
  }
  .cta-btn {
    padding: 10px 24px;
    font-size: 1em;
    margin-left: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 7px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

/* SEMI-TRANSPARENT OVERLAY WHEN MOBILE MENU IS OPEN */
.mobile-menu.open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.12);
  z-index: -1;
}



/* =======================================================
   HERO & SECTIONS (Luxury/Refined)
======================================================= */
.hero {
  background: linear-gradient(90deg, #fffbe8 0%, #f7f5ea 100%);
  border-bottom: 2px solid #f2e7b1;
  padding: 60px 0 50px 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 33px;
}
.hero h1 {
  font-size: 2.9rem;
  color: #17375E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: #3078A2;
  font-weight: 400;
  margin-bottom: 20px;
}


.features .content-wrapper {
  gap: 36px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 25px;
}
.feature-grid li {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--lux-shadow);
  padding: 30px 22px 26px 22px;
  min-width: 250px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  border: 1.5px solid #f2e7b1;
  transition: box-shadow 0.16s, border-color 0.19s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px rgba(27,34,49,0.17);
  border-color: var(--gold);
  z-index: 2;
}
.feature-grid img {
  width: 42px;
  margin-bottom: 11px;
}

.services-summary .service-overview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 23px;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.services-summary .service-overview-list li {
  padding: 8px 22px;
  background: #faf2d7;
  color: #17375E;
  border-radius: 17px;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 7px 12px 0;
}
.services-summary .service-highlight-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 17px;
}
.services-summary .service-highlight-cards > div {
  background: var(--surface);
  border-radius: 13px;
  box-shadow: var(--lux-shadow);
  padding: 27px 22px 23px 23px;
  max-width: 315px;
  border: 1.5px solid #f2e7b1;
}
.services-summary .cta-btn {
  margin-top: 11px;
}

.cta-bar {
  background: #17375E;
  color: #fff;
  padding: 28px 0;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(23, 55, 94, 0.12);
  margin-bottom: 55px;
}
.cta-bar .container {
  align-items: center;
  justify-content: center;
}
.cta-bar .content-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.cta-bar span {
  font-size: 1.18em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  margin-right: 16px;
}
.cta-bar .cta-btn {
  background: linear-gradient(90deg, #fffbe8 0%, #f2c94c 100%);
  color: #17375E;
  border: 2.5px solid var(--gold);
  font-weight: 700;
}
.cta-bar .cta-btn:hover, .cta-bar .cta-btn:focus {
  color: #17375E;
  background: #F9EFA4;
  border-color: #ffd600;
}


/* =======================================================
   TESTIMONIALS
======================================================= */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 22px;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #17375E;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 11px;
  position: relative;
  padding: 0 10px;
}
.testimonial-card blockquote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 2em;
  padding-right: 7px;
  vertical-align: top;
  line-height: 0.7;
  font-weight: 800;
}
.testimonial-card .customer-info {
  font-size: 0.99em;
  color: #3078A2;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card .customer-info strong {
  color: #17375E;
  font-weight: 700;
}


/* =======================================================
   CARDS AND ITEM STYLES
======================================================= */
.card {
  border: 1px solid #f2e7b1;
  box-shadow: 0 6px 26px rgba(27,34,49,0.11);
  background: var(--surface);
  border-radius: 18px;
  transition: box-shadow 0.16s, border-color 0.19s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(27,34,49,0.19);
  border-color: var(--gold);
  z-index: 2;
}

/* About page team bios and value cards */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 19px;
}
.team-bios > div {
  background: var(--surface);
  border-radius: 13px;
  box-shadow: var(--lux-shadow);
  padding: 20px 21px 17px 21px;
  min-width: 220px;
  max-width: 330px;
  border: 1px solid #f2e7b1;
}
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 19px;
}
.usp-list li {
  background: #fffbe8;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17375E;
  padding: 9px 19px 9px 19px;
  font-weight: 500;
  margin-bottom: 5px;
}
/* Value list styling (kernwaarden) */
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-list li {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(23,55,94,0.07);
  padding: 21px 18px 17px 18px;
  min-width: 200px;
  max-width: 310px;
  border: 1.5px solid #f2e7b1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-list img {
  width: 32px;
  margin-bottom: 8px;
}

/* SERVICE LISTS AND BENEFIETS */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  margin-bottom: 22px;
}
.service-list li {
  background: var(--surface);
  border-radius: 13px;
  box-shadow: var(--lux-shadow);
  padding: 24px 19px 20px 18px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 210px;
  border: 1.5px solid #f2e7b1;
}
.individual-service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 15px;
}
.individual-service-cards > div {
  background: #f9fafb;
  border-radius: 11px;
  box-shadow: none;
  border: 1px solid #fce8a1;
  padding: 18px 19px 14px 19px;
  min-width: 190px;
  max-width: 260px;
}
.benefit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 22px;
}
.benefit-points li {
  background: #faf2d7;
  border-radius: 16px;
  color: #17375E;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 17px 7px 17px;
  font-weight: 500;
}

/* Process/steps list styling (onze-werkwijze) */
.step-by-step-process {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 27px;
}
.step-by-step-process li {
  background: var(--surface);
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(23,55,94,0.07);
  padding: 30px 20px 20px 20px;
  min-width: 220px;
  max-width: 320px;
  border: 1.5px solid #f2e7b1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.step-by-step-process img {
  width: 38px;
  margin-bottom: 9px;
}
.quality-guarantees {
  background: #fffbe8;
  border-radius: 13px;
  box-shadow: none;
  border: 1.5px solid #f2e7b1;
  padding: 20px 18px 17px 18px;
}


/* =======================================================
   PROJECTEN PAGE CARD GRID
======================================================= */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.project-item {
  background: var(--surface);
  border-radius: 13px;
  box-shadow: 0 3px 14px rgba(23,55,94,0.08);
  border: 1.5px solid #f2e7b1;
  padding: 27px 23px 20px 23px;
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, border-color 0.19s;
}
.project-item:hover {
  box-shadow: 0 6px 30px rgba(215,174,36,0.12);
  border-color: var(--gold);
}
.repair-types-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 7px;
}
.repair-types-list li {
  background: #faf2d7;
  color: #17375E;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97em;
  padding: 6px 15px;
  font-weight: 500;
  margin-bottom: 5px;
}


/* =======================================================
   FAQ / ACCORDION
======================================================= */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 41px;
}
.accordion-faq-list > div {
  background: var(--surface);
  border: 1.2px solid #f2e7b1;
  border-radius: 13px;
  box-shadow: var(--lux-shadow);
  padding: 19px 23px;
  transition: border 0.16s, box-shadow 0.14s;
  cursor: pointer;
}
.accordion-faq-list > div:hover {
  border: 1.7px solid var(--gold);
  box-shadow: 0 6px 28px rgba(23, 55, 94, 0.10);
}
.accordion-faq-list h3 {
  font-size: 1.17rem;
  margin-bottom: 5px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.accordion-faq-list > div > div {
  font-size: 1.02em;
  color: #1a2536;
  margin-top: 7px;
}


/* =======================================================
   CONTACT PAGE
======================================================= */
.address-details, .phone-email-hours {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.phone-email-hours p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-email-hours img {
  width: 20px;
}
.cta-btn-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 18px;
}


/* =======================================================
   FOOTER
======================================================= */
footer {
  background: linear-gradient(90deg, #f5f7fb 0%, #fdf6ea 100%);
  color: #17375E;
  box-shadow: 0 -2px 12px rgba(23, 55, 94, 0.08);
  padding: 38px 0 0 0;
  border-top: 2px solid #f2e7b1;
  font-size: 1rem;
  letter-spacing: 0.005em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
}
.footer-brand span {
  font-weight: 600;
  font-size: 1.02em;
  line-height: 1.6;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #17375E;
  transition: color 0.17s;
  font-size: 1.04em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2C94C;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 19px;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-brand {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  footer {
    padding-top: 26px;
    font-size: 0.96em;
  }
  .footer-brand img {
    width: 34px;
    height: 34px;
  }
}

/* ===========================
SCROLLBAR (Refined looks)
=========================== */
::-webkit-scrollbar {
  width: 10px;
  background: #ece4c3;
}
::-webkit-scrollbar-thumb {
  background: #f7e08c;
  border-radius: 8px;
}

/* ===========================
BUTTONS, LINK, MICRO-INTERACTIONS
=========================== */
a.cta-link {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  background: none;
  transition: color 0.18s, border-color 0.18s;
}
a.cta-link:hover, a.cta-link:focus {
  color: var(--gold);
  border-color: var(--secondary);
}
button, .cta-btn {
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.14s, background 0.16s, color 0.17s;
}

/* Misc spacing (mandatory min 20px between cards/blocks) */
section > * + * {
  margin-top: 20px;
}


/* ===========================
   RESPONSIVE DESIGN (Mobile-first)
=========================== */
@media (max-width: 950px) {
  .feature-grid,
  .service-list,
  .project-list,
  .value-list,
  .team-bios,
  .step-by-step-process,
  .individual-service-cards {
    justify-content: flex-start;
    gap: 15px;
  }
}
@media (max-width: 820px) {
  .footer-brand span,
  .service-highlight-cards > div,
  .project-item {
    font-size: 0.98em;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 35px 0 30px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .cta-bar .content-wrapper {
    flex-direction: column;
    gap: 13px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid,
  .service-list,
  .project-list,
  .value-list,
  .team-bios,
  .step-by-step-process,
  .individual-service-cards, .benefit-points {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .project-item, .team-bios > div, .feature-grid li, .value-list li {
    min-width: 0;
    max-width: 100%;
  }
  .testimonials .content-wrapper {
    gap: 13px;
  }
}
@media (max-width: 500px) {
  main > section, .section {
    padding: 22px 5px;
  }
  h2, .section h2 { font-size: 1.1rem; }
  h1 { font-size: 1.2rem; }
}

/* Text-Image flex containers on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Accordion/FAQ accessible focus */
.accordion-faq-list > div:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===========================
   COOKIE CONSENT BANNER (FIXED)
=========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  border-top: 2.5px solid var(--gold);
  box-shadow: 0 -3px 36px rgba(23, 55, 94, 0.09);
  z-index: 9100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px 20px 16px;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.83,-0.02,.41,1), opacity 0.16s;
  gap: 25px;
  font-size: 1.02em;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-message {
  color: #17375E;
  font-size: 1.08em;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 16px;
}
.cookie-banner .cookie-btn {
  background: #f7e08c;
  border: none;
  color: #17375E;
  border-radius: 8px;
  font-size: 1.07em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 19px;
  margin-left: 6px;
  margin-right: 6px;
  transition: background 0.14s, color 0.15s;
  box-shadow: 0 1px 4px rgba(242,201,76,0.09);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--gold);
  color: #0e1524;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #f7f7f8;
  color: #17375E;
  border: 1.5px solid #ece4c3;
}
.cookie-banner .cookie-btn.cookie-settings:hover, .cookie-banner .cookie-btn.cookie-settings:focus {
  background: #faf2d7;
  border-color: var(--gold);
  color: #4b4104;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.94em;
    padding: 11px 5px 11px 5px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-banner-message {
    margin-right: 3px;
  }
}

/* ===========================
   COOKIE PREFERENCES MODAL
=========================== */
.cookie-modal-bg {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: rgba(23,55,94,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 8px 32px rgba(23, 55, 94, 0.15);
  padding: 30px 30px 23px 30px;
  max-width: 410px;
  width: 97vw;
  z-index: 9999;
  position: relative;
} 
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-title {
  font-size: 1.18em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #17375E;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 19px;
  background: none;
  border: none;
  font-size: 2em;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #e6c943;
}
.cookie-modal-content {
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category label {
  font-size: 1.03em;
  color: #17375E;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #ece4c3;
  border-radius: 13px;
  position: relative;
  transition: background 0.18s;
  margin-right: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookie-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 9px;
  transition: left 0.15s, background 0.13s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.cookie-toggle input:checked + span {
  left: 22px;
  background: var(--gold);
}
.cookie-category.essential label {
  color: #bda200;
  font-weight: 600;
  position: relative;
}
.cookie-category.essential label::after {
  content: '(Altijd ingeschakeld)';
  font-size: 0.95em;
  color: #aba17a;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 90px;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 15px 6vw 13px 6vw;
    max-width: 98vw;
  }
  .cookie-modal-content {
    font-size: 0.98em;
  }
}

/* ===========================
  MISCELLANEOUS POLISH
============================= */
::-moz-selection {
  background: #fce871;
  color: #17375E;
}
::selection {
  background: #fce871;
  color: #17375E;
}

blockquote {
  quotes: '\201C''\201D''\2018''\2019';
}

hr {
  border: none;
  height: 1.5px;
  background: #f2e7b1;
  border-radius: 2px;
  margin: 38px 0;
}

strong {
  font-weight: 700;
  color: #17375E;
}

.table, table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: var(--lux-shadow);
}
table th, table td {
  padding: 9px 14px;
}
table th {
  background: #f9fafb;
  color: #17375E;
  font-weight: 700;
}
table tr {
  border-bottom: 1px solid #eee2a9;
}
table tr:last-child {
  border-bottom: none;
}


/* ====================
  PRINT FRIENDLY
==================== */
@media print {
  .cookie-banner, .mobile-menu, .mobile-menu-toggle, nav, header, footer {
    display: none !important;
  }
  body, main, .container {
    background: #fff !important;
    color: #000 !important;
  }
}
