/* ===== ROOT CSS VARIABLES ===== */
:root {
  --primary-color: #024763;
  --secondary-color: #FFAE00;
  --light-color: #4BA9C2;
  --dark-color: #343a40;

  --text-color: #222222;
  --text-light: #666666;

  --font-family: "Lato", sans-serif;
  --font-size-base: 19px;
  --line-height-base: 1.5;
  --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.fs-1 {
  font-size: 44px !important;
  line-height: 1.45;
}

.fs-2 {
  font-size: 36px !important;
  line-height: 1.2 !important;
}

.fs-3 {
  font-size: 26px !important;
}

.fs-4 {
  font-size: 1.5rem;
}

.fs-5 {
  font-size: 1.25rem;
}

.fs-6 {
  font-size: 1rem;
}

/* ===== PARAGRAPH ===== */
p {
  margin-bottom: 19px;
  line-height: 30px;
}

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


/* ===== LISTS ===== */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}


/* ===== TEXTAREA ===== */
textarea {
  resize: none;
  min-height: 120px;
}

/* ===== CODE ===== */
code,
pre {
  border-radius: var(--border-radius);
  font-size: 0.875rem;
}

code {
  padding: 0.2rem 0.4rem;
  color: #d63384;
}

pre {
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}

pre code {
  padding: 0;
  color: inherit;
  background-color: transparent;
}

.text-colored {
  color: var(--light-color) !important;
}

/* ======Button====== */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #FFAE00;
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 20px 17px;
  border-radius: 10px;
  text-decoration: none;
  line-height: 1;
  position: relative;
  border: none;
  cursor: pointer;

  transition: all 0.3s ease;
  overflow: hidden;
}

.large-btn:hover {
  box-shadow: 0 6px 27px rgba(255, 174, 0, 0.32);
  transform: scale(1.03);
}

.btn-main:hover {
  background-color: #E59D00;
}

.btn-main .text {
  display: inline-block;
  position: relative;
  overflow: hidden !important;
  height: 16px;
  line-height: 16px;
}

.btn-text-source {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  vertical-align: top;
}

.source-secondary {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.source-primary div,
.source-secondary div {
  display: inline-block !important;
  line-height: 16px !important;
}

.btn-main>.icon {
  position: relative;
  width: 25px;
  height: 16px;
  overflow: hidden !important;
  display: inline-block;
  top: 2px;
  flex: 0 0 auto;
}

.btn-main .icon img {
  max-width: 25px;
}

.btn-main .icon .icon1,
.btn-main .icon .icon2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.6, 0.01, 0.15, 1);
}

.btn-main .icon .icon1 {
  left: 0;
}

.btn-main .icon .icon2 {
  left: -150%;
}

.btn-main .icon .icon2 img {
  max-width: 25px;
}

.btn-main:hover .icon .icon1 {
  transform: translateY(-50%) translateX(150%);
}

.btn-main:hover .icon .icon2 {
  transform: translateY(-50%) translateX(150%);
}

/* ======commone====== */

/* --- Swiper Pagination (Dots) --- */
.swiper-pagination-bullet {
  width: 13px !important;
  height: 13px !important;
  background: #FFFFFF !important;
  opacity: 0.4;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}


.section-padding {
  padding: 75px 0px 75px;
}

.gradient-bg {
  background-image: linear-gradient(140deg,
      hsl(201deg 95% 17%) 0%,
      hsl(200deg 96% 19%) 8%,
      hsl(198deg 98% 20%) 17%,
      hsl(197deg 100% 22%) 25%,
      hsl(196deg 100% 24%) 33%,
      hsl(195deg 100% 26%) 42%,
      hsl(194deg 100% 27%) 50%,
      hsl(193deg 100% 29%) 58%,
      hsl(192deg 100% 31%) 67%,
      hsl(191deg 100% 32%) 75%,
      hsl(190deg 100% 34%) 83%,
      hsl(189deg 100% 36%) 92%,
      hsl(188deg 99% 37%) 100%);
}

.gradient-bg--two {
  background: linear-gradient(-15deg, #024763 40.45%, rgba(0, 0, 0, 1) 150.87%);
}

/* ==== Preloader ====== */
.preloader-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1f404e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
  cursor: wait;
}

.preloader-build-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.build-logo-parts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.logo-text-mask {
  overflow: hidden !important;
  display: block;
  padding-top: 5px;
}

.logo-part-icon,
.logo-text-group {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.logo-part-icon {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  justify-content: center;
}

.logo-part-icon .part-img {
  height: 100px;
  width: auto;
}

.logo-part-text-success,
.logo-part-text-ondernemen {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.logo-part-text-ondernemen {
  color: #0083A8;
}

/* Gold bar */

/* ANimation — uitgeschakeld: elementen direct zichtbaar (geen fade-up) */
.fade-up-anim {
  opacity: 1;
}

.fade-up-sequence .sequence-item {
  opacity: 1;
}

/* =============== */
/* Header Start */
/* =============== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 0px 0;
  position: relative;
  z-index: 999;
}

.logo-brand .logo-img {
  max-height: 62px;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-menu {
  gap: 50px;
}

.nav-menu .menu-item {
  position: relative;
}

.nav-menu .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #333333 !important;
  padding: 22px 0;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  position: relative;
}



.nav-menu .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  height: 1px;
  width: 0%;
  content: "";
  background: #024763;
  transition: all .3s ease;
}

.nav-menu .nav-link:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}


.nav-menu .nav-link:hover {
  color: #024763 !important;
}

.has-dropdown > .custom-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: #024763;
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.has-dropdown:hover > .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.custom-dropdown li a {
  display: block;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.custom-dropdown li a:hover {
  background-color: #01354b;
  padding-left: 28px;
}

/* ===== Genest submenu (3e niveau) - desktop fly-out ===== */
.custom-dropdown .has-sub {
  position: relative;
}

.custom-dropdown .has-sub > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-dropdown .has-sub > a:hover {
  background-color: #01354b;
}

.custom-dropdown .has-sub > a i {
  font-size: 18px;
  line-height: 1;
}

.custom-dropdown--sub {
  position: absolute;
  top: -10px;
  left: 100%;
  min-width: 240px;
  background-color: #024763;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-dropdown .has-sub:hover > .custom-dropdown--sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ===== Genest submenu - mobiel ===== */
.mobile-nav-link--sub {
  font-size: 16px;
  font-weight: 500;
  color: #024763 !important;
  padding: 10px 12px !important;
  border-bottom: 1px solid #0247630d;
}

.mobile-custom-dropdown--sub {
  background: #02476314;
}

.mobile-custom-dropdown--sub li a {
  padding-left: 24px;
}

.header-phone {
  font-size: 18px;
  font-weight: 600;
  color: #024763 !important;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: #FFAE00 !important;
}

.header-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff !important;
  background-color: #FFAE00;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 5px;
}

.menu-toggle-btn .bar {
  width: 28px;
  height: 2px;
  background-color: #024763;
  border-radius: 2px;
}

.offcanvas {
  width: 320px !important;
  background-color: #ffffff !important;
}

.offcanvas-header {
  border-bottom: 1px solid #eaeaea;
  padding: 10px 20px;
}

.offcanvas-body {
  padding: 25px 20px;
}

.mobile-nav-menu .mobile-menu-item {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #333333 !important;
  padding: 14px 0;
  text-decoration: none;
  display: block;
}

.mobile-nav-link:hover {
  color: var(--secondary-color) !important;
}

/* Rij met hoofdpagina-link + losse open/dicht-knop voor het submenu */
.mobile-nav-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.mobile-nav-row .mobile-nav-link {
  flex: 1 1 auto;
}

.mobile-nav-row .mobile-nav-link--sub {
  border-bottom: 0;
}

.mobile-nav-row--sub {
  border-bottom: 1px solid #0247630d;
}

.mobile-custom-dropdown li a.mobile-nav-toggle,
.mobile-nav-toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 0;
  border-bottom: 0;
  background: none;
  color: #333333 !important;
  text-decoration: none;
}

.mobile-custom-dropdown li a.mobile-nav-toggle:hover,
.mobile-nav-toggle:hover {
  background: none;
  color: var(--secondary-color) !important;
}

.mobile-nav-toggle i {
  font-size: 20px;
  line-height: 1;
  transition: all .3s ease;
}

.mobile-nav-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-nav-toggle[aria-expanded="true"] {
  color: var(--secondary-color) !important;
}

.mobile-custom-dropdown {
  border-radius: 0;
  margin-bottom: 0px;
  padding: 0px 0px;
  background: #0247631c;
}

.mobile-custom-dropdown li a {
  display: block;
  padding: 9px 12px;
  color: #000 !important;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid #0247630d;
  transition: all .3s ease;
}

.mobile-custom-dropdown li a:hover {
  background: #024763;
  color: #fff !important;
}

.btn-close:focus {
  box-shadow: none !important;
}



/* =============== */
/* Header End  */
/* =============== */


/* =============== */
/* Sectin Hero Start */
/* =============== */

.hero--section {
  position: relative;
  overflow: hidden;
}

.hero-item {
  padding-top: 140px;
  padding-bottom: 132px;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-item--bg {
  object-position: top center;
  will-change: transform;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-title {
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 100px;
}

.hero-title span {
  color: #024763;
}

.hero-tagline {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  margin-top: -70px;
  margin-bottom: 30px;
}
.hero-tagline::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: #4BA9C2;
  vertical-align: middle;
  margin-right: 12px;
}

/* Herotekst iets lager plaatsen (zodat 'aan' niet over het rechteroog valt) */
@media (min-width: 992px) {
  .hero-content {
    margin-top: 90px;
  }
}

.hero-title .char {
  transform: translateY(115%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content .btn-main {
  font-size: 20px;
  font-weight: 500;
  padding: 20px 20px 23px;
}

.swiper-slide-active .hero-title .char {
  transform: translateY(0);
}

.line-parent {
  overflow: hidden;
}

.line-wrapper {
  overflow: hidden !important;
  display: block;
}

.hero--section .swiper-pagination {
  bottom: 56px !important;
  left: 12px !important;
  text-align: left;
  width: auto;
}


/* =============== */
/* Sectin Hero End  */
/* =============== */


/* =============== */
/* Programmas Sectin Start */
/* =============== */

/* Section BG & Padding */
.programmas-section {
  background-image: linear-gradient(140deg,
      hsl(201deg 95% 17%) 0%,
      hsl(200deg 96% 19%) 8%,
      hsl(198deg 98% 20%) 17%,
      hsl(197deg 100% 22%) 25%,
      hsl(196deg 100% 24%) 33%,
      hsl(195deg 100% 26%) 42%,
      hsl(194deg 100% 27%) 50%,
      hsl(193deg 100% 29%) 58%,
      hsl(192deg 100% 31%) 67%,
      hsl(191deg 100% 32%) 75%,
      hsl(190deg 100% 34%) 83%,
      hsl(189deg 100% 36%) 92%,
      hsl(188deg 99% 37%) 100%);
}

.programma-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programma-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.card-content-wrap {
  padding: 40px 33px 40px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.programma-card .card-title {
  font-size: 26px;
  font-weight: 400;
  color: #024763;
  margin-bottom: 18px;
}

.programma-card .card-desc {
  font-size: 17px;
  line-height: 29px;
  color: #222222;
  margin-bottom: 28px;
  flex-grow: 1;
}

.programma-card .btn-main {
  align-self: flex-start;
  margin-top: auto;
}

.card-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.programma-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* =============== */
/* Programmas Sectin End  */
/* =============== */


/* =============== */
/* Sectin Block Start */
/* =============== */

.dotList li {
  list-style: disc;
  list-style-position: inside;
  line-height: 30px;
}

.dotList {
  padding-left: 30px;
}


.checkList.checkList--white li {
  color: #fff;
  line-height: 30px;
  font-weight: 400;
}

.pretitle {
  color: #00ABC5;
  display: block;
  font-size: 24px;
  margin-bottom: 15px;
}



.employers-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.employers-card .card-img-wrap {
  width: 100%;
  height: 216px;
  overflow: hidden;
}

.employers-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

.employers-card .card-content-wrap {
  padding: 26px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.employers-card .card-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
}

.employers-card .card-title a {
  color: #024763;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
}

/* Tweede deel van een dienstnaam in lichtblauw (tweekleurige kaarttitel) */
.employers-card .card-title .title-accent {
  color: var(--light-color);
}

.employers-card .card-title a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFAE00;
  transition: width 0.3s ease;
}

.employers-card:hover .card-title a::after {
  width: 100%;
}

.employers-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

.employers-card--dark {
  background: #024763 !important;
}

.employers-card--dark .card-title a {
  color: #FFFFFF !important;
}

.employers-card--dark .card-title a::after {
  background-color: #FFFFFF;
}

.about-content {
  margin-bottom: 80px;
}

.about-text {
  color: #7A7A7A;
}

/* =============== */
/* Sectin Block End  */
/* =============== */


/* =============== */
/* Footer Start */
/* =============== */
/* --- Footer Base Section --- */
.footer--section {
  background-color: #024763;
  padding: 50px 0 30px 0;
  color: #FFFFFF;
}

.footer-widget h4,
.footer-contact h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 30px;
  line-height: 1.2;
}


.footer-menu li span {
  font-size: 16px;
  color: #FFFFFF;
  display: inline-block;
}

/* .footer-menu li a {
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
  line-height: 2.5;
}

.footer-menu li a:hover {
  color: #FFAE00;
  padding-left: 4px;
} */

.footer-menu li a {
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1.9;
  display: inline;
  padding-bottom: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(#FFAE00, #FFAE00);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;

  transition: color 0.3s ease, background-size 0.4s ease;
}

.footer-menu li a:hover {
  color: #FFAE00;
  background-position: 0% 100%;
  background-size: 100% 1px;
}



.footer-contact .input-box {
  margin-bottom: 16px;
}

.footer-contact .form-control {
  background-color: transparent !important;
  border: 1px solid #FFFFFF !important;
  border-radius: 6px !important;
  height: 37px;
  color: #FFFFFF !important;
  font-size: 14px;
  padding: 0 15px;
  box-shadow: none !important;
}

.footer-contact .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact .form-control:focus {
  border-color: #FFAE00 !important;
}

.footer__bottom {
  border-top: 1px solid #7A7A7A;
  margin-top: 60px;
  padding-top: 30px;
  font-size: 14px;
}

.footer__bottom p {
  color: #FFFFFF;
  font-size: 14px;
  margin: 0;
}

.footer__bottom-menu ul {
  gap: 40px;
}

.footer__bottom-menu ul li a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
  position: relative;
  text-decoration: none;
}

.footer__bottom-menu ul li a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  content: "";
  height: 1px;
  background: #fff;
  transition: all .3s ease;
}

.footer__bottom-menu ul li a:hover:after {
  left: auto;
  right: 0;
  width: 0%;
  background: #FFAE00;
}

/* Bottom Menu Hover Effect */
.footer__bottom-menu ul li a:hover {
  color: #FFAE00;
}



/* =============== */
/* CMS content overrides                                                    */
/* Zorgt dat opsommingen die de beheerder via de editor (CKEditor) invoert  */
/* er hetzelfde uitzien als de vaste lijsten in de template.                */
/* =============== */
.section .fade-up-anim ul:not(.checkList):not(.dotList) {
  padding-left: 30px;
}
.section .fade-up-anim ul:not(.checkList):not(.dotList) li {
  list-style: disc;
  list-style-position: inside;
  line-height: 30px;
}
.employers-header ul:not(.checkList):not(.dotList) {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.employers-header ul:not(.checkList):not(.dotList) li {
  line-height: 30px;
  font-weight: 400;
}
.employers-header.fade-up-anim .text-white ul li,
.employers--section.gradient-bg .employers-header ul li,
.employers--section.gradient-bg--two .employers-header ul li {
  color: #fff;
}

/* =============== */
/* Footer End  */
/* =============== */
/* ===== Content-secties (subpagina's, template 10) ===== */
.content-section .content-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
}
.content-section .content-body p { margin-bottom: 1rem; }
.content-section .content-body h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin: 1.5rem 0 0.75rem;
}
.content-section .content-body ul.checkList {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
}
.content-section .content-body ul.checkList li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.content-section .content-body ul.checkList li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 700;
}
.content-section .content-body ul:not(.checkList) {
  padding-left: 20px;
  margin: 0 0 1rem;
}
.content-section .content-body ul:not(.checkList) li {
  list-style: disc;
  margin-bottom: 6px;
}
.content-block-img img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.content-microcopy {
  font-size: 20px;
  color: var(--light-color);
  border-left: 3px solid var(--secondary-color);
  padding-left: 18px;
}
.content-section--dark .content-body,
.content-section--dark .content-body h3,
.content-section--dark h2,
.content-section--dark .content-microcopy { color: #ffffff; }
.content-section--dark .pretitle { color: #7FD3E8; }
.content-section--dark .content-body ul.checkList li::before { color: var(--secondary-color); }

/* ===== Prijskaarten (abonnementen) ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 1.5rem 0;
}
.price-card {
  background: #fff;
  border: 1px solid #e4e9ec;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(2,71,99,0.06);
  display: flex;
  flex-direction: column;
}
.price-card.price-card--featured {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 30px rgba(2,71,99,0.12);
}
.price-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin: 0 0 6px;
}
.price-card .price {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}
.price-card .price small { font-size: 15px; font-weight: 500; color: var(--text-light); }
.price-card .price-sub { color: var(--text-light); font-size: 15px; margin-bottom: 14px; }
.price-card ul.checkList { margin-top: 6px; }
.price-note { font-size: 14px; color: var(--text-light); margin-top: 4px; }

/* ===== Ervaringen / quotes ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 1rem 0;
}
.testimonial {
  background: #f4f8fa;
  border-left: 3px solid var(--light-color);
  border-radius: 10px;
  padding: 22px 24px;
  font-style: italic;
  color: var(--text-color);
}

/* ===== Contactformulier / contactpagina ===== */
.contact-section .pretitle { color: var(--light-color); }
.contact-info { margin: 0; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-color);
}
.contact-info li a { color: var(--text-color); text-decoration: none; transition: color .3s ease; }
.contact-info li a:hover { color: var(--secondary-color); }
.contact-info__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e4e9ec;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 34px rgba(2, 71, 99, 0.08);
}
.contact-form .form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-size: 15px;
}
.contact-form .form-control {
  border: 1px solid #d6dee2;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  color: var(--text-color);
  background: #fff;
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}
.contact-form .form-control:focus {
  border-color: var(--light-color);
  box-shadow: 0 0 0 3px rgba(75, 169, 194, 0.15);
  outline: none;
}
.contact-form textarea.form-control { resize: vertical; min-height: 140px; }
.contact-form .btn-main { margin-top: 6px; border: none; cursor: pointer; }
/* Honeypot: onzichtbaar voor mensen, wel voor bots */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bedankpagina */
.form-thanks {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.form-thanks .thanks-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(75,169,194,0.12);
  color: var(--light-color);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 38px;
  margin-bottom: 20px;
}

/* ===== Aanpassingen 26-07: nav naast logo, oranje vinkjes, afwisselende vlakken ===== */

/* Navigatiebalk naast het logo houden (niet eronder) */
.site-header .row { flex-wrap: nowrap; }
.nav-menu { gap: 34px; }
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-menu { gap: 22px; }
  .nav-menu .nav-link { font-size: 17px; }
  .header-phone { font-size: 16px; }
}

/* Alle opsommingen met vinkjes: oranje vinkje, strak links uitgelijnd (hangende inspringing) */
ul.checkList {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
}
ul.checkList li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  line-height: 1.5;
}
ul.checkList li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 700;
}
/* Gewone opsommingen: tekst op vervolgregel strak onder de eerste tekstregel
   (overschrijft de bestaande 'list-style-position: inside'-regel) */
.content-section .content-body ul:not(.checkList) {
  padding-left: 22px;
  list-style: none;
}
.content-section .content-body ul:not(.checkList) li {
  list-style: disc !important;
  list-style-position: outside !important;
  padding-left: 4px;
  line-height: 1.5;
}

/* Afwisselend lichtblauw vlak op verdiepings-/dienstenpagina's */
.content-section--blauw {
  background-color: #EAF4F8;
}

/* Verdiepings-/dienstenpagina's: koppen en tekst links uitlijnen (niet gecentreerd) */
.content-section .content-block-text,
.page-header .col-lg-10 {
  text-align: left;
}

/* Tweekleurige dienstnaam op donkere kaarten (werknemers-blok) */
.employers-card--dark .card-title .title-accent { color: var(--light-color); }

/* ===== Dienstkaartjes (Ondernemerscoaching) ===== */
.dienst-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 1.5rem 0 0;
}
@media (max-width: 575px) {
  .dienst-grid { grid-template-columns: 1fr; }
}
.dienst-kaart {
  background: #ffffff;
  border: 1px solid #e4e9ec;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(2, 71, 99, 0.06);
}
.dienst-kaart h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.dienst-kaart p {
  flex-grow: 1;
  margin-bottom: 16px;
  font-size: 16px;
}
.dienst-kaart .btn-dienst {
  align-self: flex-start;
  background: var(--secondary-color);
  color: #ffffff !important;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.dienst-kaart .btn-dienst:hover { background: #E59D00; }

/* ===== Juridische pagina's (AV / Privacy) ===== */
.content-body ul.av-list {
  list-style: decimal;
  padding-left: 26px;
  margin: 0 0 1.2rem;
}
.content-body ul.av-list li {
  list-style: decimal;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Naam onder een review-quote */
.testimonial-name {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}
