.elementor-559 .elementor-element.elementor-element-0eff0e6{--display:flex;}@media(min-width:768px){.elementor-559 .elementor-element.elementor-element-0eff0e6{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-40bbcb6 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #1b2f75;
  --red: #d41112;
  --red-dark: #b80f10;
  --text: #1b2f75;
  --muted: #5d6fa7;
  --bg: #f7f9ff;
  --white: #ffffff;
  --border: rgba(27, 47, 117, 0.12);
  --shadow: 0 18px 40px rgba(27, 47, 117, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

h1, h2, h3 {
  margin: 0;
  color: var(--blue);
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--text);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(27, 47, 117, 0.08);
  color: var(--blue);
}

.btn-secondary:hover {
  background: rgba(27, 47, 117, 0.14);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(212,17,18,0.10), transparent 26%), linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  padding: 60px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 18px;
  max-width: 11ch;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 58ch;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-card > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-points {
  display: grid;
  gap: 12px;
}

.point-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.point-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,17,18,0.10);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  margin-top: 2px;
}

.point-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--blue);
}

.point-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.fineprint {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 10px;
}

/* Section head */
.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 12px 30px rgba(27, 47, 117, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(27, 47, 117, 0.10);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212,17,18,0.10);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

/* Split section */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-panel h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 18px;
}

.content-panel > p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 26px;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.check-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,17,18,0.10);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  margin-top: 2px;
}

.check-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--blue);
}

.check-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Alleen label in het midden van de pagina */
.section-label-page-center {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto 36px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(27, 47, 117, 0.05);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 28px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

/* CTA */
.cta-box {
  background: var(--blue);
  border-radius: 28px;
  padding: 56px 44px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(27, 47, 117, 0.16);
}

.cta-box .section-label,
.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box p {
  max-width: 760px;
  margin: 18px auto 0;
  opacity: 0.94;
  line-height: 1.85;
  font-size: 17px;
}

.cta-box .btn-row {
  justify-content: center;
  margin-top: 30px;
}

.cta-box .btn-secondary {
  background: #fff;
  color: var(--blue);
}

.cta-box .btn-secondary:hover {
  background: #f3f6ff;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .image-panel {
    min-height: 420px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 22px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .faq-item summary {
    font-size: 17px;
    padding: 20px 22px;
  }

  .faq-item p {
    padding: 0 22px 20px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .image-panel {
    min-height: 280px;
  }

  .hero-copy p,
  .section-head p,
  .content-panel > p,
  .cta-box p {
    font-size: 16px;
  }
}/* End custom CSS */