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

:root {
  --dark-teal: #1f6581;
  --mid-blue: #8baccf;
  --link-color: #8baccf;
  --hover-color: #fe8fa0;
  --body-text: #777777;
  --heading-color: #333333;
  --white: #ffffff;
  --light-section: #f9f9f9;
}

body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--body-text);
  line-height: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Serif', Georgia, "Times New Roman", serif;
  color: var(--heading-color);
  line-height: 1.3;
}

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

a:hover {
  color: var(--hover-color);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.larger-link {
  font-weight: bold;
  font-size: 110%;
}

/* ─── HEADER / NAV ─────────────────────────────────── */
#main-header {
  background: #8baccf;
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: box-shadow 0.3s ease;
}

#main-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
  transition: height 0.3s ease;
}

#main-header.scrolled .header-inner {
  height: 52px;
}

.site-logo img {
  height: 46px;
  display: block;
  opacity: 0;
  transform: translateY(-6px) scale(0.88);
  transition: height 0.3s ease, opacity 0.35s ease, transform 0.35s ease;
}

#main-header.scrolled .site-logo img {
  height: 34px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

#top-menu {
  list-style: none;
  display: flex;
  gap: 28px;
}

#top-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-transform: none;
  transition: color 0.2s;
}

#top-menu a:hover {
  color: var(--hover-color);
}

#hamburger {
  display: none;
}

/* ─── HERO ─────────────────────────────────────────── */
#home {
  background-image: url('images/pexels-pixabay-434337.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 20px 80px;
  text-align: center;
}

#home img.hero-logo,
#home .hero-subhead {
  position: relative;
  z-index: 1;
}

#home img.hero-logo {
  max-width: 395px;
  width: 80%;
  height: auto;
}

#home .hero-subhead {
  color: #777777;
  font-family: 'Roboto', sans-serif;
  font-size: 1.875rem;
  line-height: 2em;
  margin-top: 10px;
}

/* ─── MINT BAND ─────────────────────────────────────── */
#mint-band {
  background: #82c6a9;
  min-height: 144px;
}

/* ─── ONDERSTEUNING ─────────────────────────────────── */
#ondersteuning {
  background: var(--white);
  padding: 0 0 140px;
}

.row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.col-half {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-3-5 {
  flex: 0 0 60%;
  max-width: 60%;
}

.col-2-5 {
  flex: 0 0 40%;
  max-width: 40%;
}

.col-full {
  flex: 0 0 100%;
  max-width: 100%;
}

.ond-left {
  width: 100%;
}

.sea-wrapper {
  position: relative;
  width: 100%;
  margin-top: -144px;
}

.ond-left img.sea {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  box-shadow: 33px 52px 80px 0px rgba(0, 36, 73, 0.07);
}

/* ── Sea image social buttons (round, no text, bottom-center) */
.ond-left .social-follow {
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  gap: 30px;
  white-space: nowrap;
}

.ond-left .social-follow li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #777777;
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.ond-left .social-follow li a:hover {
  background: #555555;
  color: var(--white);
  transform: scale(1.1);
}

/* ── Generic social follow (contact section) */
.social-follow {
  list-style: none;
  display: flex;
  gap: 10px;
}

.social-follow li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #84b08a;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.social-follow li a:hover {
  background: #fe8fa0;
  color: var(--white);
}

.social-follow li a .net-icon {
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
}

/* Ondersteuning right column – plain, black on white */
.ond-content {
  padding-top: 101px;
  min-height: 529px;
}

.ond-content h2 {
  font-size: 2.75rem;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.3em;
}

/* CTA box */
.et-promo {
  background-color: var(--dark-teal);
  padding: 60px 36px 40px;
  color: var(--white);
  min-height: 529px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.et-promo h2 {
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.3em;
  margin-bottom: 24px;
}

.et-promo p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 2em;
}

.et_pb_button {
  display: inline-block;
  background-color: var(--mid-blue);
  color: var(--white) !important;
  border: 10px solid var(--mid-blue);
  border-radius: 100px;
  padding: 0.3em 1em;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 24px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.et_pb_button:hover {
  background-color: #fe8fa0;
  border-color: #fe8fa0;
  color: var(--white) !important;
}

/* ─── WAT DOE IK ────────────────────────────────────── */
#wat {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.66) 50%), url('images/Mint-Gold-9_2.png');
  background-size: cover;
  background-position: center;
  padding: 126px 0 140px;
  position: relative;
}

#wat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDkwLjcybDE0MC0yOC4yOCAzMTUuNTIgMjQuMTRMNzk2LjQ4IDY1LjggMTE0MCAxMDQuODlsMTQwLTE0LjE3VjBIMHY5MC43MnoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMCAwdjQ3LjQ0TDE3MCAwbDYyNi40OCA5NC44OUwxMTEwIDg3LjExbDE3MC0zOS42N1YwSDB6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 100% 100px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

#wat .row {
  display: block;
}

#wat .wat-header {
  max-width: 1080px;
  margin: 0 auto 36px;
  padding: 0 20px;
  text-align: center;
}

#wat .wat-header h2 {
  font-size: 2.75rem;
  color: var(--heading-color);
  margin-bottom: 12px;
}

#wat .wat-header p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 24px 20px;
  text-align: center;
}

.service-card img {
  width: 48px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 16px 0 16px;
  font-family: 'Noto Serif', serif;
}

.service-card ul {
  list-style: none;
  padding: 0;
  text-align: center;
  line-height: 1.5em;
}

.service-card ul li {
  font-size: 0.88rem;
  padding: 3px 0;
}

.wat-btn-row {
  max-width: 1080px;
  margin: 36px auto 0;
  padding: 0 20px;
  text-align: center;
}

/* ─── FLEXIBEL ──────────────────────────────────────── */
#flexibel {
  background: var(--white);
  padding: 140px 0;
}

#flexibel .row {
  align-items: flex-start;
}

#flexibel h2 {
  font-size: 2.75rem;
  color: var(--heading-color);
  margin-bottom: 16px;
}

#flexibel img.photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── GOLD BAND ─────────────────────────────────────── */
#gold-band {
  background-image: url('images/Mint-Gold-9-scaled.jpg');
  background-size: cover;
  background-position: center;
  min-height: 598px;
  position: relative;
}

#gold-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDkwLjcybDE0MC0yOC4yOCAzMTUuNTIgMjQuMTRMNzk2LjQ4IDY1LjggMTE0MCAxMDQuODlsMTQwLTE0LjE3VjBIMHY5MC43MnoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMCAwdjQ3LjQ0TDE3MCAwbDYyNi40OCA5NC44OUwxMTEwIDg3LjExbDE3MC0zOS42N1YwSDB6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 100% 100px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* ─── WIE BEN IK ────────────────────────────────────── */
#wie {
  background: var(--white);
  padding: 140px 0;
}

#wie .row {
  align-items: flex-start;
}

.wie-content h2 {
  font-size: 2.75rem;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.3em;
}

#wie img.photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── WAAROM ────────────────────────────────────────── */
#waarom {
  background: var(--white);
  padding: 100px 0;
}

#waarom .row {
  justify-content: center;
}

#waarom .wat-content {
  text-align: center;
}

#waarom .wat-content h2 {
  font-size: 2.75rem;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.3em;
}

/* ─── CONTACT ───────────────────────────────────────── */
#contact {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.66) 50%), url('images/Mint-Gold-7_3.png');
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  margin-top: 200px;
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDkwLjcybDE0MC0yOC4yOCAzMTUuNTIgMjQuMTRMNzk2LjQ4IDY1LjggMTE0MCAxMDQuODlsMTQwLTE0LjE3VjBIMHY5MC43MnoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMCAwdjQ3LjQ0TDE3MCAwbDYyNi40OCA5NC44OUwxMTEwIDg3LjExbDE3MC0zOS42N1YwSDB6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 100% 100px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

#contact .contact-heading {
  max-width: 1080px;
  margin: 0 auto 36px;
  padding: 0 20px;
}

#contact .contact-heading h2 {
  font-size: 2.75rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

#contact .contact-heading p {
  max-width: 700px;
}

.contact-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info-col img.info-logo {
  height: 52px;
  margin-bottom: 16px;
  display: block;
}

.contact-info-col h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-info-col p {
  font-size: 0.95rem;
}

.contact-info-col .social-follow {
  margin-top: 16px;
  gap: 30px;
}

.contact-info-col .social-follow li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  padding: 0;
  font-size: 21px;
  font-weight: 700;
}

/* ─── FOOTER ────────────────────────────────────────── */
#main-footer {
  background-color: var(--mid-blue);
}

#footer-widgets {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  gap: 40px;
}

.footer-widget {
  flex: 1;
}

.footer-widget h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 14px;
  text-transform: none;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  font-size: 13px;
  color: var(--white);
  padding: 3px 0;
  line-height: 1.7;
}

.footer-widget p {
  font-size: 13px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 4px;
}

#footer-bottom {
  background-color: #82c6a9;
  padding: 16px 20px;
  text-align: center;
}

#footer-bottom p {
  color: #fff;
  font-size: 12px;
  margin: 0;
}

#footer-bottom a {
  color: #fff;
}

/* ─── BANNER DIVIDERS ───────────────────────────────── */
.banner-divider {
  width: 100%;
  min-height: 100px;
  background-color: #84b08a;
  background-size: cover;
  background-position: center;
  padding-bottom: 19px;
}

/* #banner-1 is solid #82c6a9 from .banner-divider base style */

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .row {
    flex-wrap: wrap;
  }

  .col-half,
  .col-3-5,
  .col-2-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ond-left {
    order: 1;
    flex: none;
    width: 540px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .ond-content {
    order: 2;
    padding-top: 40px;
    min-height: auto;
  }

  #footer-widgets {
    flex-wrap: wrap;
  }

  .contact-body {
    flex-wrap: wrap;
  }

  .contact-form-col,
  .contact-info-col {
    flex: 0 0 100%;
  }
}

@media (max-width: 640px) {
  #hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
  }

  #hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--body-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  #main-header.nav-open #hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #main-header.nav-open #hamburger span:nth-child(2) {
    opacity: 0;
  }

  #main-header.nav-open #hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #top-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 8px 20px;
    gap: 0;
    z-index: 9998;
  }

  #main-header.nav-open #top-menu {
    display: flex;
  }

  #top-menu li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: var(--mid-blue);
  }

  #top-menu li:last-child a {
    border-bottom: none;
  }

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

  #home {
    padding: 60px 20px;
  }

  #wie .wie-content {
    text-align: center;
  }
}