/* =========================================================================
   1. VARIABELEN & BASIS INSTELLINGEN
   ========================================================================= */
:root {
  --primary-color: #7e9e75;
  --secondary-color: #f0f0f0;
  --third-color: #61705c;
  --background-color: #fefefe;
  --light-gray: #e0e0e0;
  --font-family: 'Arial', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: #333;
  margin: 0;
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased; /* Maakt tekst iets strakker */
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em; /* Geeft een moderne "tight" look aan koppen */
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; /* Voeg deze toe */
}

/* Extra responsive container */
@media (max-width: 1120px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}


main {
  transition: transform 0.3s ease-in-out;
}

section {
  padding: 80px 0;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  color: var(--primary-color);
}

h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.75rem;
  }
}

/* =========================================================================
   2. HEADER & NAVIGATIE
   ========================================================================= */
.main-header {
  background-color: var(--secondary-color);
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.header-content {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  white-space: nowrap; 
}

/* =========================================================================
   MODERNE HAMBURGER MENU & NAVIGATIE
   ========================================================================= */

/* Moderne hamburger button */
.hamburger-modern {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-modern:hover {
  transform: scale(1.1);
}

@media (max-width: 965px) {
  .hamburger-modern {
    display: flex;
  }
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  border-radius: 2px;
}

/* Animatie wanneer menu open is */
body.nav-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: white;
}

body.nav-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

body.nav-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: white;
}

/* Overlay voor betere gebruikerservaring */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  backdrop-filter: blur(2px);
}

body.nav-active .nav-overlay {
  opacity: 1;
  visibility: visible;
}

/* Moderne slide-in navigatie */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

body.nav-active .main-nav {
  right: 0;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.main-nav li {
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered animatie voor menu items */
body.nav-active .main-nav li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateX(0); }
body.nav-active .main-nav li:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateX(0); }
body.nav-active .main-nav li:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateX(0); }
body.nav-active .main-nav li:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateX(0); }
body.nav-active .main-nav li:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateX(0); }
body.nav-active .main-nav li:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateX(0); }

.main-nav a {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: #f0f0f0;
  padding-left: 40px;
}

/* Moderne login button in menu */
.nav-button {
  margin-top: 30px !important;
  background-color: white !important;
  color: var(--primary-color) !important;
  border-radius: 25px;
  padding: 12px 30px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  align-self: center; /* Dit centreert de knop */
  width: 200px; /* Geeft de knop een vaste breedte */
}

body.nav-active .nav-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.nav-button:hover {
  background-color: #f8f9fa !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Desktop styling */
@media (min-width: 966px) {
  .hamburger-modern {
    display: none;
  }
  
  .nav-overlay {
    display: none;
  }
  
  body.nav-active main {
    transform: translateY(0);
  }
  
  .main-nav {
    position: static;
    right: 0;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    box-shadow: none;
    flex-grow: 1;
    margin-left: 30px;
  }
  
  .main-nav ul {
    display: flex;
    gap: 20px;
    margin-right: 20px;
  }
  
  .main-nav li {
    width: auto;
    opacity: 1;
    transform: translateX(0);
    transition: none;
  }
  
  .main-nav a {
    color: #555;
    padding: 8px 0;
    border-bottom: none;
    font-size: 1rem;
    position: relative;
  }
  
  .main-nav a::before {
    display: none;
  }
  
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .main-nav a:hover {
    color: var(--primary-color);
    padding-left: 0;
  }
  
  .main-nav a:hover::after {
    width: 100%;
  }

.nav-button {
  background-color: var(--primary-color) !important;
  color: white !important;
  margin-top: 0 !important;
  border-radius: 5px;
  padding: 10px 20px !important;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  width: auto; /* Dit voeg je toe */
  align-self: auto; /* Dit voeg je toe */
}

  
  .nav-button:hover {
    background-color: var(--third-color) !important;
    transform: translateY(0);
  }
}

/* Verhinder scrolling wanneer menu open is */
body.nav-active {
  overflow: hidden;
}

/* Verwijder de oude main transform */
body.nav-active main {
  transform: none;
}
  
  /* Logbutton weer terug naar rechts op desktop */
  .logbutton { 
    margin-left: 40px; 
    margin-top: 0;
  }

  .main-nav .button { margin-left: auto; flex-shrink: 0; }
  .upload-section .upload-container { max-width: 1000px; }

/* =========================================================================
   3. INDEX SECTIES (HERO, WAAROM, REVIEWS, CONTACT)
   ========================================================================= */
.hero-section { background-color: var(--background-color); padding: 80px 16px; }
.hero-container { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.hero-text { text-align: center; }
.hero-text h1 { font-size: 2rem; margin-bottom: 20px; color: var(--primary-color); }
.hero-text .intro { font-size: 1.05rem; line-height: 1.8; max-width: 600px; margin: 0 auto 24px; color: #555; }
.hero-text ul { list-style: none; padding: 0; text-align: left; max-width: 460px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.hero-text li { position: relative; padding: 10px 14px 10px 42px; font-size: 0.97rem; background: #f4f7f3; border-radius: 10px; color: #333; font-weight: 500; }
.hero-text li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%); font-size: 0.85rem;
  color: var(--primary-color);
}
.hero-image { width: 100%; max-width: 500px; }
.hero-image img { width: 100%; height: auto; border-radius: 10px; }

@media (min-width: 768px) {
  .hero-container { flex-direction: row; justify-content: space-between; text-align: left; gap: 80px; }
  .hero-text, .hero-image { flex-basis: 50%; }
  .hero-text { text-align: left; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-text ul { margin: 0; }
}

.why-us-section { background-color: var(--secondary-color); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 100%;
  padding: 20px 0;
  /* Zorgt dat de nummering werkt op mobiel/tablet */
  counter-reset: card-counter; 
}

/* Specifieke breakpoints voor betere controle */
@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolommen op tablets */
  }
  .cards-grid .card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr; /* 1 kolom op mobiel */
  }
  .cards-grid .card:last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
}

.card {
  background: #ffffff; /* Zorgt voor het witte vlak */
  border-radius: 12px; 
  padding: 35px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* De subtiele schaduw */
  text-align: left;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent; /* Voorkomt verspringen bij hover border */
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.card h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.4rem;
}

.services-section { background-color: var(--background-color); }
.services-list { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.service-item { min-width: 250px; flex: 1; text-align: center; }
.service-item .icon { font-size: 3rem; display: block; margin-bottom: 10px; }
.service-item h4 { color: var(--primary-color); margin-top: 0; }

.reviews-section { background-color: var(--secondary-color); }
.review-carousel { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.review-item { background: var(--light-gray); border-radius: 10px; padding: 30px; max-width: 500px; text-align: left; }
.review-item .author { font-style: italic; margin-top: 15px; font-weight: bold; }

.contact-section { text-align: center; background-color: var(--background-color); }
.contact-info-wrapper { display: flex; justify-content: center; margin-top: 30px; }
.contact-info { text-align: left; max-width: 400px; margin-top: 30px; }

.hero-button-one {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(126, 158, 117, 0.35);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.hero-button-one:hover {
  background-color: var(--third-color);
  box-shadow: 0 6px 20px rgba(97, 112, 92, 0.4);
  transform: translateY(-2px);
}

.hero-button-two {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.hero-button-two:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Container voor de tijdlijn - VERBETERDE VERSIE */
.process-timeline {
  display: flex;
  justify-content: space-between; /* Veranderd van space-around */
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  max-width: 100%;
  padding: 0 5%;
}

/* De verbindingslijn achter de bolletjes */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: #e5e7eb;
  z-index: 1;
}

/* De individuele bolletjes */
.timeline-step {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px var(--secondary-color);
  flex-shrink: 0; /* Voorkomt dat bolletjes krimpen */
}

/* RESPONSIVE BREAKPOINTS VOOR TIMELINE */

/* Tablet landscape: verberg timeline wanneer layout breekt */
@media (max-width: 1100px) and (min-width: 769px) {
  .process-timeline {
    display: none;
  }
  
  /* Voeg nummering toe aan de cards zelf */
  .card::before {
    content: counter(card-counter);
    counter-increment: card-counter;
    position: absolute;
    top: -15px;
    left: 20px;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .card {
    position: relative; /* Nodig voor absolute positioning van ::before */
  }
  
  .cards-grid {
    counter-reset: card-counter; /* Reset de counter */
    margin-top: 20px; /* Extra ruimte voor de bolletjes */
  }
}

/* Mobiel: verberg timeline en gebruik compacte nummering */
@media (max-width: 768px) {
  .process-timeline {
    display: none;
  }
  
  .card::before {
    content: counter(card-counter);
    counter-increment: card-counter;
    position: absolute;
    top: -15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  
  .cards-grid {
    counter-reset: card-counter;
    margin-top: 15px;
  }
}

/* Desktop: toon normale timeline */
@media (min-width: 1101px) {
  .process-timeline {
    display: flex;
  }
  
  .card::before {
    display: none; /* Verberg card nummering op desktop */
  }
}

/* =========================================================================
   AANPASSING: SERVICES SECTION WITRUIMTE & ICONEN
   ========================================================================= */

.services-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  /* EXTRA RUIMTE: Zorgt voor balans met andere secties */
  padding: 40px 0 20px 0; 
}

.service-item {
  min-width: 250px;
  flex: 1;
  text-align: center;
  /* RUIMTE: Zorgt dat items niet op elkaar plakken op mobiel */
  margin-bottom: 20px; 
}

/* Professionele Icon Wrapper */
.service-icon-wrapper {
  width: 75px;
  height: 75px;
  background-color: #f4f7f3; /* Lichte variant van je groene primary color */
  color: var(--primary-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px; 
  font-size: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
}

.service-item h4 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 10px;
}

/* Hover effect voor extra beleving */
.service-item:hover .service-icon-wrapper {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(126, 158, 117, 0.2);
}

/* =========================================================================
   4. UPLOAD, DASHBOARD & AI ASSISTENT (STIJL UIT HTML)
   ========================================================================= */
.upload-section {
  display: flex; justify-content: center; align-items: center;
  min-height: calc(100vh - 120px); padding: 50px 0;
  background-color: var(--background-color);
}
.upload-container {
  background-color: var(--secondary-color);
  padding: 40px; border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 600px; width: 100%; text-align: center;
}
.welcome-user { margin-bottom: 10px; }

.section-block {
  background-color: #f7f7f7; padding: 30px;
  border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Bestand kiezen & Upload */
.upload-buttons { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 20px; }
.custom-file-button, .upload-button {
  background-color: var(--primary-color);
  color: white; padding: 10px 20px; border-radius: 5px;
  font-size: 1rem; cursor: pointer; border: none;
  font-family: var(--font-family); width: 150px;
  height: 45px; display: flex; justify-content: center; align-items: center;
}

.file-display-box {
    display: flex; align-items: center; justify-content: space-between;
    background: #e8f5e9; padding: 12px; border-radius: 6px;
    border: 1px solid #c8e6c9; margin: 15px auto 0 auto; max-width: 400px;
}
.remove-btn { cursor: pointer; color: #d32f2f; font-weight: bold; font-size: 1.4em; padding: 0 5px; }

.status-msg { margin-top: 15px; font-weight: 600; min-height: 1.2em; }
.last-upload-info { margin-top: 12px; font-size: 0.85rem; color: #666; font-style: italic; }
.sector-info { margin: 0 0 15px; font-size: 0.9rem; color: var(--primary-color); font-weight: 600; }

/* Dashboard */
.metabase-container { width: 100%; height: auto; }
.metabase-container iframe { width: 100%; height: 100vh; border: none; overflow: hidden; }
.config-message { text-align: center; color: #383735; padding: 30px; }

/* AI Chat Assistant */
.ai-chat-box {
    height: 300px; overflow-y: auto; background: #fff;
    border: 1px solid #ddd; padding: 15px; border-radius: 8px;
    margin-bottom: 15px; font-size: 0.95em;
}
.ai-input-container { display: flex; gap: 10px; }
.ai-input-container input { flex: 1; padding: 12px; border: 1px solid #ccc; border-radius: 4px; }

.ai-msg-bubble {
    margin-top: 10px; color: #2c3e50; background: #f0f4f8;
    padding: 15px; border-radius: 8px; border-left: 4px solid #7e9e75;
    text-align: left; line-height: 1.6;
}
.ai-msg-bubble h1, .ai-msg-bubble h2, .ai-msg-bubble h3 { margin-top: 0; font-size: 1.1em; color: #4a6a41; }
.ai-msg-bubble ul { padding-left: 20px; }
.loading-text { font-style: italic; color: #666; }

.ai-suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.suggestion-btn {
    background-color: #f4f7f3; /* Lichte variant van je groen */
    border: 1px solid var(--primary-color);
    color: #4a6a41;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.suggestion-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* =========================================================================
   5. LOGIN & REGISTRATIE
   ========================================================================= */
   
.login-section, .register-section {
  display: flex; justify-content: center; align-items: center;
  min-height: calc(100vh - 120px); padding: 50px 16px;
}

.login-box, .register-box {
  background-color: var(--secondary-color);
  padding: 40px; border-radius: 12px; /* Iets ronder voor modernere look */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Zachtere, diepere schaduw */
  width: 100%; max-width: 420px; text-align: center;
}

.login-box h2, .register-box h2 { 
  margin-top: 0; 
  color: var(--primary-color);
  font-family: var(--font-heading); /* Gebruikt Montserrat */
}

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { 
  display: block; 
  margin-bottom: 8px; 
  font-weight: 600; 
  font-size: 0.9rem;
}

.form-group input,
select#sector,
select#pakket {
  width: 100%; 
  padding: 12px; /* Iets meer ademruimte */
  border: 1px solid var(--light-gray); 
  border-radius: 6px; 
  box-sizing: border-box; 
  font-family: var(--font-body); /* Gebruikt Inter */
  transition: border-color 0.2s;
}

.form-group input:focus,
select#sector:focus,
select#pakket:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Specifieke Select styling (jouw bestaande code geoptimaliseerd) */
select#sector,
select#pakket {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237e9e75' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
  color: #999;
  background-color: white;
}

select#sector:focus,
select#sector:valid,
select#pakket:focus,
select#pakket:valid {
  color: #333;
}

/* Nieuw: Checkbox styling voor Voorwaarden */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Button over volledige breedte voor registratie */
.register-box .button {
  width: 100%;
  padding: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-box .login-actions { display: flex; align-items: center; justify-content: center; gap: 25px; margin-top: 25px; }
.login-box .link-to-forgot a { color: var(--primary-color); text-decoration: none; font-weight: 600; }
.link-to-register a, .link-to-login a { color: var(--primary-color); font-weight: bold; text-decoration: none; }

/* =========================================================================
   PREMIUM PRICING SECTION
   ========================================================================= */
.pricing-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.pricing-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid .pricing-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid .pricing-card:last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--light-gray);
}

/* Featured Card (Professional) */
.pricing-card-featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(126, 158, 117, 0.2);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 50px rgba(126, 158, 117, 0.25);
}

/* Badge "Meest gekozen" */
.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--third-color));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(126, 158, 117, 0.3);
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 25px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0 0 10px 0;
}

.pricing-description {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
  min-height: 60px;
}

/* Price Display */
.pricing-price {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--light-gray);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.price-period {
  font-size: 1rem;
  color: #999;
  margin-left: 5px;
}

/* Features List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-features .feature-disabled {
  color: #bbb;
}

.pricing-features .feature-disabled i {
  color: #ddd;
}

/* Pricing Buttons */
.pricing-button {
  display: block;
  width: 100%;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  margin-top: auto;
  box-sizing: border-box;
}

.pricing-button:hover {
  background-color: var(--third-color);
  border-color: var(--third-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 158, 117, 0.3);
}

.pricing-button-featured {
  background: linear-gradient(135deg, var(--primary-color), var(--third-color));
  border: none;
  box-shadow: 0 6px 20px rgba(126, 158, 117, 0.3);
}

.pricing-button-featured:hover {
  box-shadow: 0 8px 25px rgba(126, 158, 117, 0.4);
}

/* Trial Info Box */
.trial-info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary-color);
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.trial-info-icon {
  width: 50px;
  height: 50px;
  background-color: #f4f7f3;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trial-info-text strong {
  font-size: 1.05rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 6px;
}

.trial-info-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.trial-info-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.trial-info-link:hover {
  color: var(--third-color);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .trial-info-box {
    flex-direction: column;
    text-align: center;
  }
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-color);
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.faq-item h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h4 i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.faq-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-link:hover {
  color: var(--third-color);
  text-decoration: underline;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .price-amount {
    font-size: 2.5rem;
  }

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

/* =========================================================================
   6. ALGEMENE ELEMENTEN & FOOTER
   ========================================================================= */
footer { background-color: #333; color: white; padding: 20px 0; text-align: center; }
.button {
  padding: 10px 20px; font-size: 1rem; background-color: var(--primary-color);
  color: white; border: none; border-radius: 5px; cursor: pointer;
  text-decoration: none; display: inline-block;
}
.button:hover { background-color: #6a8c62; }

.button.secondary-button {
  background-color: #6c757d !important;
  margin-top: 15px;
}

.button.secondary-button:hover {
  background-color: #686869 !important;
}

.hidden { display: none; }

/* =========================================================================
   UPLOAD METHODE KAARTEN
   ========================================================================= */
.upload-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .upload-methods-grid {
    grid-template-columns: 1fr;
  }
}

.upload-method-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.upload-method-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(126, 158, 117, 0.15);
  transform: translateY(-4px);
}

.method-icon {
  width: 50px;
  height: 50px;
  background-color: #f4f7f3;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.upload-method-card h4 {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.upload-method-card > p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 15px;
}

.method-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.method-steps li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

.method-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-steps {
  counter-reset: step-counter;
}

.method-btn {
  margin-top: auto;
  text-align: center;
}

.method-note {
  background: #f4f7f3;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #4a6a41;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
}

.method-note i {
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================================
   BEDRIJFSPAGINA (ACCOUNT)
   ========================================================================= */
.account-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 120px);
  padding: 50px 0;
  background-color: var(--background-color);
}

.account-container {
  max-width: 700px;
  width: 100%;
  padding: 0 20px;
}

.account-block {
  background-color: var(--secondary-color);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.account-block h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-block h3 i {
  font-size: 1.1rem;
}

.account-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .account-form .form-row {
    grid-template-columns: 1fr;
  }
}

.account-form .form-group {
  margin-bottom: 18px;
}

.account-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #444;
}

.account-form .form-group input,
.account-form .form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.account-form .form-group input:focus,
.account-form .form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.account-form .form-group input[readonly] {
  background-color: #e9ecef;
  color: #666;
  cursor: default;
}

.account-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237e9e75' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: white;
  cursor: pointer;
}

.account-msg {
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.org-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (max-width: 600px) {
  .org-data-grid {
    grid-template-columns: 1fr;
  }
}

.org-data-total {
  margin-top: 15px;
  padding: 12px;
  background: #f4f7f3;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #4a6a41;
  font-weight: 600;
  text-align: center;
}

/* =========================================================================
   7. DATAMODEL PAGINA
   ========================================================================= */
.datamodel-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e8ede6 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.datamodel-hero h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.datamodel-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.datamodel-section {
  background-color: var(--background-color);
  padding: 80px 0;
  text-align: center;
}

.datamodel-subtitle {
  color: #666;
  font-size: 1rem;
  margin-top: -20px;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.datamodel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

@media (max-width: 768px) {
  .datamodel-grid {
    grid-template-columns: 1fr;
  }
}

.datamodel-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.datamodel-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(126, 158, 117, 0.15);
}

.datamodel-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.datamodel-icon {
  width: 50px;
  height: 50px;
  background-color: #f4f7f3;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.datamodel-card-header h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0;
}

.datamodel-card-label {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  margin: 0 0 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.datamodel-detail {
  margin-bottom: 18px;
}

.datamodel-detail h4 {
  font-size: 0.95rem;
  color: #444;
  margin: 0 0 6px;
}

.datamodel-detail p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Methode sectie */
.datamodel-methode-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
  text-align: center;
}

.methode-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.methode-block {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.methode-block h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.methode-block h3 i {
  font-size: 1.1rem;
}

.methode-block p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
}

.methode-block ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.methode-block li {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Bronvermelding sectie */
.datamodel-bron-section {
  background-color: var(--background-color);
  padding: 60px 0;
  text-align: center;
}

.bron-box {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.bron-box p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 8px;
}

/* =========================================================================
   8. IMPACT SECTIE
   ========================================================================= */
.impact-section {
  background-color: var(--secondary-color);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.impact-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.impact-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.impact-icon-wrapper {
  width: 75px;
  height: 75px;
  background-color: #f4f7f3;
  color: var(--primary-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  border: 1px solid var(--light-gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card:hover .impact-icon-wrapper {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(126, 158, 117, 0.2);
}

.impact-stat {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.impact-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid .impact-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid .impact-card:last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
}

/* =========================================================================
   9. VERBETERDE CONTACT SECTIE
   ========================================================================= */
.contact-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper .form-group {
  margin-bottom: 18px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background-color: #f4f7f3;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 2px;
}

.contact-detail-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   10. PROFESSIONELE FOOTER
   ========================================================================= */
.site-footer {
  background-color: #2b2b2b;
  color: #ccc;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.footer-col h4::after {
  display: none;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 10px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================================================================
   11. VOORWAARDEN LINK & PAGINA
   ========================================================================= */
.checkbox-group a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.checkbox-group a:hover {
  color: var(--third-color);
}

.voorwaarden-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e8ede6 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.voorwaarden-hero h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.voorwaarden-hero p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.voorwaarden-section {
  background-color: var(--background-color);
  padding: 60px 0;
  text-align: left;
}

.voorwaarden-content {
  max-width: 800px;
  margin: 0 auto;
}

.voorwaarden-block {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.voorwaarden-block h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin: 0 0 15px;
}

.voorwaarden-block p,
.voorwaarden-block li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
}

.voorwaarden-block ul {
  margin: 10px 0;
  padding-left: 20px;
}

.voorwaarden-block li {
  margin-bottom: 6px;
}