/* =======================================================
   🌐 URENVERANTWOORD – STYLE GLOBAL (by Ganyo K. M. Nugloze)
   ======================================================= */

/* ===== Variables principales ===== */
:root {
  --mc-primary: #003e84;  /* Bleu principal */
  --mc-logo-nenthol: #003e84; /* Bleu foncé logo Nenthol */
  --mc-accent: #ff9900;   /* Orange accent */
  --mc-gray: #b7b9b6;
  --mc-dark: #222;
  --mc-white: #fff;
}

/* ===== Reset & base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: 'ubuntu', sans-serif;
  color: var(--mc-dark);
  background: #f5f7fb;
  display: flex;
  flex-direction: column;
}

/* === Barre de recherche moderne === */

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    padding: 0.6rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 380px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.55rem 1rem;
    font-size: 15px;
    border-radius: 50px;
    outline: none;
    background: #f4f6f8;
    transition: 0.25s;
}

.search-input:focus {
    background: #eef0f3;
}

.search-btn {
    background: #ef8200;       /* orange TCK */
    border: none;
    color: white;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.search-btn:hover {
    background: #ca6e00;
}



/* Alignement barre + bouton ajouter */
.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

main {
  flex: 1;
}

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

.container {
  width: min(1100px, 94%);
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 1px;
}

/* =======================================================
   🔷 HEADER ADMIN
   ======================================================= */
.site-header.admin-header {
  background: var(--mc-white);
  border-bottom: 4px solid var(--mc-primary);
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: .75rem 0;
}

/* Logo / Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.brand-logo {
  width: 50px;
  height: auto;
}

.brand-name {
  font-weight: 900;
  font-size: 1.3rem;
}

.brand-name--med { color: var(--mc-primary); }
.brand-name--a { color: var(--mc-accent); }

.brand-tagline {
  font-size: .8rem;
  color: #555;
  margin-top: .2rem;
}

/* Navigation */
.admin-nav {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.admin-nav .nav-link {
  color: var(--mc-white);        /* ← Couleur par défaut : blanc */
  padding: .5rem .75rem;
  border-radius: .4rem;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.admin-nav .nav-link:hover {
  background: rgba(255,255,255,0.15);
}

.admin-nav .nav-link.is-active {
  color: var(--mc-accent);         /* ← Orange */
  background: rgba(255,165,0,0.12); /* léger fond orange transparent */
  font-weight: 700;
}

.admin-nav .nav-links{
  color: var(--mc-primary);        /* ← Couleur par défaut : blanc */
  padding: .5rem .75rem;
  border-radius: .4rem;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}


.btn {
  display: inline-block;
  border-radius: .4rem;
  padding: .6rem 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn-contact {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  background: var(--mc-accent);
  border: 1px solid var(--mc-accent);
  color: var(--mc-white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-contact:hover {
  filter: brightness(1.05);
}

.btn-outline {
  border: 2px solid var(--mc-primary);
  color: var(--mc-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--mc-primary);
  color: #fff;
}

/* User panel */
.user-panel {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .95rem;
}

.user-panel .user-role {
  color: var(--mc-accent);
}

/* Responsive Header */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
  .admin-nav {
    width: 100%;
    flex-wrap: wrap;
  }
}

/* =======================================================
   🟦 DASHBOARD
   ======================================================= */
.dashboard {
  text-align: center;
  padding: 3rem 0;
  background: #f5f7fb;
  min-height: 70vh;
}

.dashboard .welcome h2 {
  font-weight: 800;
  color: var(--mc-primary);
  margin-bottom: .5rem;
}

.dashboard .welcome p {
  color: #333;
  margin-bottom: 2rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: .8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  width: 250px;
  border: 2px solid var(--mc-primary);
}

.stat-card h3 {
  color: var(--mc-primary);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.stat-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.stat-card.accent {
  border-color: var(--mc-accent);
}

.stat-card.accent h3 {
  color: var(--mc-accent);
}

.stat-card.accent .accent-text {
  color: var(--mc-accent);
  font-weight: 700;
}

.actions {
  margin-top: 1.5rem;
}

.actions .btn-contact {
  font-size: 1rem;
  padding: .8rem 1.6rem;
}

/* Responsive dashboard */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    align-items: center;
  }
}



.error {
  margin-top: 1rem;
  color: #b02a37;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  border-radius: .4rem;
  padding: .5rem .75rem;
  font-weight: 500;
}

/* =======================================================
   🔻 FOOTER FIXE
   ======================================================= */
.admin-footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0a448f;
  color: #e9eef7;
  border-top: 4px solid #f77500;
  font-size: .95rem;
  margin-top: auto;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, .05);
  text-align: center;
  padding: 25px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: .9rem 0;
}

.footer-text {
  margin: 0;
  color: #e9eef7;
}

.footer-text strong {
  color: #fff;
}

.sep {
  margin: 0 .5rem;
  opacity: .5;
}

.to-top {
  appearance: none;
  border: none;
  background: var(--mc-accent);
  color: #fff;
  padding: .4rem .7rem;
  border-radius: .4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}

.to-top:hover {
  filter: brightness(1.05);
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }
}
/* =======================================================
   🔐 PAGE LOGIN – Urenverantwoord (responsive + centrée)
   ======================================================= */
body.login-page {
  background: #f3f6fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.login-header {
  margin-bottom: 1rem;
}

.login-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.login-logo-center img {
  width: 20%;
  height: auto;
  display: block;
}

/* Boîte plus compacte et centrée */
.login-box {
  background: #fff;
  padding: 1.8rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  width: 100%;
  max-width: 360px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: 0;
  max-height: 250px;
}

.login-box h3 {
  color: var(--mc-primary);
  margin-bottom: 1.25rem;
  font-weight: 800;
  font-size: 1.4rem;
}

.login-box input[type="email"] {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ccd4e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border .2s ease;
}

.login-box input[type="email"]:focus {
  border-color: var(--mc-primary);
  outline: none;
}

.login-box button {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--mc-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.login-box button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.login-box .error {
  margin-top: 1rem;
  color: #b02a37;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  border-radius: .4rem;
  padding: .5rem .75rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
  .login-box {
    padding: 1.8rem 1.2rem;
    box-shadow: 0 3px 12px rgba(0,0,0,.05);
  }
  .login-logo-center img {
    width: 70px;
  }
  .login-box h3 {
    font-size: 1.2rem;
    padding-top: 10px;
  }
}

/* Terug naar startpagina knop */
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid var(--mc-primary);
  color: var(--mc-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--mc-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* Mobiele weergave: knop 100% breed */
@media (max-width: 600px) {
  .btn-secondary {
    display: block;
    width: 50%;
    text-align: center;
    font-size: 14px;
  }
}

/* =======================================================
   ✨ Animation dashboard sans inline style
   ======================================================= */
.stat-card.hidden-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-card.show-card {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .admin-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* ✅ Centre horizontalement */
    align-items: center;       /* ✅ Aligne verticalement */
    gap: 0.5rem;               /* ✅ Espace entre les liens */
    margin: 0 auto;            /* ✅ Centre le bloc dans le conteneur */
    padding: 8px 0;
    text-align: center;
  }

  .admin-nav .nav-link,
  .admin-nav .btn-contact {
    display: inline-block;
    margin: 4px 6px;
    text-align: center;
  }
}

/* =======================================================
   📋 ACTIVITEITEN PAGE
   ======================================================= */
.activiteiten {
    background: #f3f6fb;
    min-height: 100dvh; /* ✅ mieux adapté au mobile (viewport dynamique) */
    padding: 2rem 1rem 3.5rem;
    overflow-x: hidden; /* ✅ empêche le scroll horizontal global */
}


.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h2 {
  color: var(--mc-primary);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.page-header .subtitle {
  color: #555;
  font-size: 1rem;
}

.no-data {
  text-align: center;
  color: #777;
  font-style: italic;
  margin-top: 3rem;
}

/* === Table design === */
.table-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
  overflow: hidden;
}

.data-table th {
  background: var(--mc-primary);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0.8rem;
  font-size: 0.95rem;
}

.data-table td {
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #333;
}

.data-table tr:nth-child(even) {
  background: #f8fafc;
}

.data-table tr:hover {
  background: #eef4ff;
  transition: 0.2s ease;
}

.data-table td.low {
  color: #e53935;
  font-weight: 700;
}

.data-table td.ok {
  color: #388e3c;
  font-weight: 700;
}

/* === Actions === */
.actions a {
  margin: 0 5px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.actions a.edit {
  color: var(--mc-primary);
}

.actions a.delete {
  color: #e53935;
}

.actions a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .data-table th, .data-table td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
  .page-header h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* ✅ défilement fluide sur iOS */
  }

  .data-table {
    width: 100%;
    min-width: 600px; /* ✅ empêche les cellules de se compresser trop */
  }

  body {
    overflow-x: hidden; /* ✅ empêche tout débordement global */
  }
}

/* =======================================================
   ✏️ ACTIVITEIT BEWERKEN
   ======================================================= */
.form-section {
  background: #f3f6fb;
  min-height: calc(100vh - 150px);
  padding: 2.5rem 1rem 4rem;
}

.edit-form {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.form-group label {
  font-weight: 700;
  color: var(--mc-primary);
  display: block;
  margin-bottom: .3rem;
}

.form-group input {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid #cfd7e4;
  border-radius: .5rem;
  font-size: 1rem;
  transition: border-color .2s ease;
}

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

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.alert.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  border-radius: .5rem;
  padding: .8rem 1rem;
  margin: 0 auto 1.5rem;
  max-width: 600px;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .edit-form {
    padding: 1.5rem 1rem;
  }
}

/* =======================================================
   ➕ ACTIVITEIT TOEVOEGEN
   ======================================================= */
.alert.error {
  background: #fdecea;
  color: #b02a37;
  border: 1px solid #f5c2c0;
  border-radius: .5rem;
  padding: .8rem 1rem;
  margin: 0 auto 1.5rem;
  max-width: 600px;
  text-align: center;
  font-weight: 600;
}

select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ccd4e0;
  border-radius: 0.5rem;
  font-size: 1rem;
}

/* === Progress bar === */
.progress-box {
  margin: 2rem auto;
  max-width: 400px;
  text-align: left;
}

.progress-bar {
  background: #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  height: 15px;
}

.progress-fill {
    background: linear-gradient(90deg, #0a448f, #f77500);
    height: 15px;
    transition: width 0.4s ease;
}

/* =======================================================
   📅 UREN OVERZICHT (Overzicht van geregistreerde uren)
   ======================================================= */
.uren-overzicht {
  background: #f3f6fb;
  min-height: calc(100vh - 150px);
  padding: 2rem 1rem 4rem;
}

.uren-overzicht .page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.uren-overzicht h2 {
  color: var(--mc-primary);
  font-weight: 800;
  margin-bottom: .3rem;
}

.uren-overzicht .subtitle {
  color: #555;
  font-size: .95rem;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.uren-tabel {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 3px 8px rgba(0,0,0,.05);
}

.uren-tabel th {
  background: var(--mc-primary);
  color: #fff;
  text-align: left;
  padding: .8rem;
  font-weight: 600;
}

.uren-tabel td {
  padding: .8rem;
  border-bottom: 1px solid #eee;
}

.uren-tabel tr:nth-child(even) {
  background: #fafbfc;
}

.btn-outline-small {
  display: inline-block;
  padding: .4rem .8rem;
  border: 1px solid var(--mc-primary);
  border-radius: .4rem;
  font-size: .9rem;
  color: var(--mc-primary);
  text-decoration: none;
  transition: all .2s ease;
}

.btn-outline-small:hover {
  background: var(--mc-primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .uren-tabel th, .uren-tabel td {
    font-size: .85rem;
    padding: .6rem;
  }
}

/* =======================================================
   🕒 UREN DETAIL
   ======================================================= */
.uren-detail {
  background: #f3f6fb;
  min-height: calc(100vh - 150px);
  padding: 2rem 1rem 4rem;
}

.uren-detail .page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.uren-detail h2 {
  color: var(--mc-primary);
  font-weight: 800;
  margin-bottom: .4rem;
}

.uren-detail .subtitle {
  color: #555;
  font-size: .95rem;
}

.uren-tabel {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: .6rem;
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

.uren-tabel th, .uren-tabel td {
  padding: .8rem 1rem;
  border-bottom: 1px solid #eee;
}

.uren-tabel th {
  background: var(--mc-primary);
  color: #fff;
  font-weight: 600;
  text-align: left;
}

.uren-tabel tr.disabled {
  background: #f0f0f0;
  color: #aaa;
}

.uren-tabel tr.disabled td {
  font-style: italic;
}

.uren-tabel .total-row {
  background: #eaf4ff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .uren-tabel th, .uren-tabel td {
    font-size: .85rem;
    padding: .6rem;
  }
}
.not-allowed {
    color: #aaa;
    font-style: italic;
}

/* ================================
   HERO BACKGROUND SLIDER
================================= */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slider-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: heroSlide 25s linear infinite;
}

.hero-slide img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

/* Animation */
/* @keyframes heroSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
} */

/* ============================================
   HERO SLIDER FULL WIDTH + TEXTE À GAUCHE
============================================= */

.hero-left {
    position: relative;
    width: 100vw;          /* full width écran */
    left: 50%;             
    right: 50%;
    margin-left: -50vw;    /* annule le container */
    margin-right: -50vw;   /* annule le container */
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.hero-left .hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
    color: #1a1a1a;
    padding-left: 14rem; /* distance par rapport à la gauche */
    /* padding-right: 13rem; */
}

.hero-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.1rem;
    margin: 0.8rem 0 1.2rem;
}

/* SLIDER FULL WIDTH */
.hero-left .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;        /* ici full width */
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-left .hero-slider-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: heroSlide 22s linear infinite;
}

.hero-left .hero-slide img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.4; */
}

/* Animation */
/* @keyframes heroSlide {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
} */

/* Responsive */
@media (max-width: 768px) {
    .hero-left {
        height: 350px;
    }
    .hero-left .hero-content {
        padding-left: 1.2rem;
    }
    .hero-left h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   SECTIE - Waarom Urenverantwoord?
============================================= */

.benefits-section {
    padding: 4rem 0;
    width: 100%;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 2.5rem;
}

/* GRID */
.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* CARDS */
.benefit-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #d9dfe7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.25s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.10);
}

/* ICONES */
.benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--mc-primary);
}

.benefit-card.highlight {
    border: 2px solid var(--mc-accent);
    background: #fff7e9;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================================
   SECTIE - Belangrijkste Functies
============================================= */

.features-section {
    padding: 4rem 0;
    width: 100%;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 0.5rem;
}

.features-subtitle {
    text-align: center;
    color: #444;
    max-width: 620px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* CARDS */
.feature-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #d9dfe7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    border-color: var(--mc-primary);
}

/* ICONES */
.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--mc-primary);
}

/* Titres */
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* Texte */
.feature-card p {
    font-size: 1rem;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ============================================
   SECTIE - Voor wie?
============================================= */

.targets-section {
    padding: 4rem 0;
    width: 100%;
}

.targets-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 2.5rem;
}

/* GRID */
.targets-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* CARDS */
.target-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #d9dfe7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s ease;
}

.target-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    border-color: var(--mc-primary);
}

/* ICONES */
.target-icon {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--mc-primary);
}

/* TITLES */
.target-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* TEXTE */
.target-card p {
    font-size: 1rem;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .targets-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================================
   SECTIE - Contact
============================================= */

.contact-section {
    padding: 4rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-box {
    background: #ffffff;
    border: 1px solid #d9dfe7;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    text-align: center;
    max-width: 600px;
    width: 100%;
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

/* BUTTON */
.contact-btn {
    background: var(--mc-accent);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 0.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(255,128,0,0.35);
    transition: 0.25s ease;
}

.contact-btn:hover {
    background: #e76b00;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255,128,0,0.45);
}

/* MOBILE */
@media(max-width: 600px) {
    .contact-box {
        padding: 2.4rem 1.5rem;
    }
    .contact-title {
        font-size: 1.7rem;
    }
}

.contact-btn-overons {
    background: var(--mc-accent);
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(255, 128, 0, 0.35);
    transition: 0.25s 
ease;
}

.admin-nav .nav-link-helpdesk {
    color: var(--mc-white);
    background-color: var(--mc-primary);
    padding: .5rem .75rem;
    border-radius: .4rem;
    font-weight: 600;
    transition: background .2s 
ease;
}

.site-header.overons-header {
    background: #003e84;
    border-bottom: 4px solid var(--mc-accent);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-name--med-overons {
    color: var(--mc-white);
}

.brand-name--a-overons {
    color: var(--mc-accent);
}
.brand-tagline-overons {
    font-size: .8rem;
    color: var(--mc-white);
    margin-top: .2rem;
}

/* ============================================
   HERO OVER-ONS
============================================= */

.hero-overons {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 3rem;
}

.hero-overons-content {
    position: relative;
    z-index: 5;
    max-width: 620px;
    color: #0a0a0a;
}

.hero-overons-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--mc-primary);
}

.hero-overons-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Slider background */
.hero-overons-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-overons-track {
    display: flex;
    width: max-content;
    height: 950px;
    animation: heroOveronsSlide 24s linear infinite;
}

.hero-overons-slide img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    opacity: 0.45; /* laisse le texte lisible */
}

/* Animation slider */
/* @keyframes heroOveronsSlide {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
} */

/* Responsive */
@media (max-width: 768px) {
    .hero-overons {
        height: 320px;
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero-overons-content h1 {
        font-size: 2rem;
    }

    .hero-overons-content p {
        font-size: 0.98rem;
    }
}


/* ============================================
   CONTENU OVER-ONS
============================================= */

.overons-section {
    padding: 3rem 0 4rem 0;
    display: flex;
    justify-content: center;
}

.overons-inner {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.3rem;
    border: 1px solid #d9dfe7;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.overons-inner h2 {
    color: var(--mc-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
}

.overons-inner h2:first-of-type {
    margin-top: 0;
}

.overons-inner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.overons-inner p {
    font-size: 1.02rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.overons-inner ul {
    margin: 0 0 1.2rem 1.2rem;
    padding: 0;
}

.overons-inner ul li {
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
    color: #444;
}

/* Liens dans le texte */
.overons-inner a {
    color: var(--mc-primary);
    font-weight: 600;
    text-decoration: none;
}

.overons-inner a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
    .overons-inner {
        padding: 2rem 1.4rem;
    }
}

/* ============================================
   CORPORATE FOOTER (NVBB / NENTHOL)
============================================= */

.overons-footer {
    background: var(--mc-logo-nenthol);
    border-top: 2px solid var(--mc-accent);
    padding: 3rem 1rem 1.5rem 1rem;
    /* margin-top: 4rem; */
    color: var(--mc-white);
}

.overons-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* LOGO + TITRE */
.footer-logo-block {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.footer-company-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 0.8rem;
    color: var(--mc-accent);
}

.footer-slogan {
    color: var(--mc-white);
    font-size: 0.95rem;
}

/* COLUMNS */
.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--mc-accent);
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: var(--mc-white);
    font-size: 0.95rem;
}

.footer-col a {
    text-decoration: none;
    color: var(--mc-white);
    font-weight: 500;
}

.footer-col a:hover {
    text-decoration: underline;
    color: var(--mc-accent);
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--mc-white);
}

/* MOBILE */
@media (max-width: 700px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   ACTIVITEITEN SECTION
============================================= */

.activiteiten-section {
    padding: 4rem 0;
    width: 100%;
}

.activiteiten-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 3rem;
}

/* GRID */
.activiteiten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* CARDS */
.activ-card {
    background: #ffffff;
    border: 1px solid #d9dfe7;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.activ-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    border-color: var(--mc-primary);
}

/* ICON */
.activ-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--mc-primary);
}

/* TITRE */
.activ-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* LISTE */
.activ-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.activ-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #444;
}

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

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

.activ-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.activ-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   WIE ZIJN WIJ - 2 COLONNES
============================================= */

.wie-section {
    padding: 4rem 0;
    width: 100%;
}

.wie-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 3rem;
}

/* IMAGE */
.wie-image img {
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

/* TEXTE */
.wie-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 1.2rem;
}

.wie-content p {
    font-size: 1.05rem;
    line-height: 1.7rem;
    margin-bottom: 1rem;
    color: #444;
}

.wie-content ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.wie-content ul li {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    color: #444;
    line-height: 1.7rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .wie-wrapper {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
    }
}

/* ============================================
   ONZE MISSIE - 2 COLONNES PREMIUM
============================================= */

.missie-section {
    padding: 4rem 0;
    width: 100%;
}

.missie-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%; /* Texte / Image */
    gap: 3rem;
    align-items: center;
}

/* TITRE */
.missie-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 1.2rem;
}

/* PARAGRAPHES */
.missie-content p {
    font-size: 1.05rem;
    line-height: 1.7rem;
    color: #444;
    margin-bottom: 1rem;
}

/* LISTE */
.missie-content ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.missie-content ul li {
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    color: #444;
}

/* IMAGE DROITE */
.missie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .missie-wrapper {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: 2rem;
    }

    .missie-image img {
        height: auto;
    }
}

/* ============================================
   CONTACT SECTION – PREMIUM CORPORATE
============================================= */

.contact-section {
    padding: 4rem 0;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mc-primary);
    margin-bottom: 0.6rem;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

/* CARD */
.contact-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid #d9dee8;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: #222;
}

/* LINES */
.contact-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.6rem 0;
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

/* COUNTRY TAGS */
.country-tag {
    display: inline-block;
    width: 26px;
    height: 22px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-tag.nl {
    background: #1b73e8;
}

.country-tag.bj {
    background: #e5a300;
}

/* LINKS */
.contact-card a {
    color: var(--mc-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .contact-card {
        padding: 1.6rem 1.4rem;
    }
}

.nav-link a {
    color: #ff9900;
    padding: .5rem .75rem;
    border-radius: .4rem;
    font-weight: 600;
    transition: background .2s 
ease;
}

/* =============================== */
/* 🟦 HERO – ONZE DIENSTEN */
/* =============================== */

.diensten-hero {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #002a54, #005a8f);
    color: #fff;
    text-align: center;
}

.diensten-hero-wrapper h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.diensten-hero-wrapper p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}



/* =============================== */
/* 🟧 GRID DIENSTEN */
/* =============================== */

.diensten-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 40px;
}



/* =============================== */
/* 🔹 CARD DIENST */
/* =============================== */

.dienst-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.dienst-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.dienst-icon {
    width: 250px;
    height: 250px;
    /* margin-bottom: 20px; */
}

.dienst-icon img {
    width: 172%;
    height: auto;
}

.dienst-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002a54;
    padding-top: 55px;
}

.dienst-card p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.dienst-card ul {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 18px;
}

.dienst-card ul li {
    margin-bottom: 8px;
}



/* =============================== */
/* 🔵 CTA BUTTON INSIDE CARD */
/* =============================== */

.dienst-btn {
    display: inline-block;
    background: #005a8f;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.dienst-btn:hover {
    background: #00395d;
}



/* =============================== */
/* 📱 RESPONSIVE */
/* =============================== */

@media (max-width: 768px) {

    .diensten-hero-wrapper h1 {
        font-size: 34px;
    }

    .diensten-hero-wrapper p {
        font-size: 16px;
    }

    .dienst-card {
        padding: 25px;
    }

    .dienst-icon img {
      width: 135%;
      height: auto;
    }
    
    .dienst-icon {
      width: 250px;
      height: auto;
    }

    .dienst-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #002a54;
    padding-top: 15px;
}
}

/* =============================== */
/* 🟩 CTA – BACKGROUND IMAGE */
/* =============================== */

.cta-diensten {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 150px 20px;
    text-align: center;
    background-image: url('../img/diensten/cta-bg.png');
    background-size: cover;
    background-position: center center;   /* <<< AJOUT IMPORTANT */
    background-repeat: no-repeat;
    margin-top: 40px;
    color: #fff;
    box-sizing: border-box;
    border-radius: 0 !important;
}



/* overlay sombre */
.cta-diensten::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);     /* assombrit l’image */
    backdrop-filter: blur(1px);
}

/* contenu au-dessus de l’overlay */
.cta-diensten h2,
.cta-diensten p,
.cta-diensten .cta-btn {
    position: relative;
    z-index: 2;
}

.cta-diensten h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-diensten p {
    font-size: 20px;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background: #005a8f;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #00395d;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-diensten {
        padding: 80px 20px;
    }

    .cta-diensten h2 {
        font-size: 30px;
    }

    .cta-diensten p {
        font-size: 16px;
    }
}

.contact-wrapper {
    max-width: 700px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

.contact-wrapper h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #002a54;
}

.contact-form {
    margin-top: 30px;
    text-align: left;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.dienst-options {
    margin-bottom: 20px;
}

.contact-submit {
    width: 100%;
    padding: 14px;
    background: #005a8f;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit:hover {
    background: #00395d;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper h1 {
    font-size: 26px;
}
}

/* =============================== */
/* HERO TOOLS */
/* =============================== */

.tools-hero {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #002a54, #005a8f);
    color: #fff;
    text-align: center;
}

.tools-hero-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
}

.tools-hero-wrapper p {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}

/* =============================== */
/* TOOLS GRID */
/* =============================== */

.tools-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.tools-title {
    text-align: center;
    font-size: 36px;
    color: #002a54;
    margin-bottom: 40px;
    font-weight: 700;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    grid-gap: 40px;
}

.tool-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tool-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 22px;
    color: #002a54;
    font-weight: 700;
}

.tool-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.tool-card ul li {
    margin-bottom: 8px;
}

.tool-card p {
    margin-top: 10px;
    line-height: 1.6;
}

.tool-btn {
    display: inline-block;
    margin-top: 15px;
    background: #005a8f;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.tool-btn:hover {
    background: #00395d;
}

.legal-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.legal-wrapper h1 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 5px;
}

.legal-updated {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #002a54;
}

.legal-section h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.legal-section p,
.legal-section ul {
  font-size: 15px;
  line-height: 1.6;
}

.legal-section ul {
  padding-left: 20px;
}

.contact-success-box {
    background:#d4edda;
    color:#155724;
    padding:15px;
    border-radius:6px;
    border:1px solid #c3e6cb;
    margin-bottom:20px;
    font-size:16px;
    font-weight:600;
    text-align:center;
}

.werkbeleid-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.werkbeleid-container h1 {
    font-size: 2.4rem;
    color: #003366;
    margin-bottom: 10px;
    text-align: center;
}

.werkbeleid-container h2 {
    font-size: 1.6rem;
    color: #003366;
    margin-top: 30px;
}

.werkbeleid-container h3 {
    font-size: 1.3rem;
    color: #004c99;
    margin-top: 20px;
}

.werkbeleid-container p,
.werkbeleid-container li {
    font-size: 1.05rem;
    line-height: 1.6;
}

.werkbeleid-container ul {
    margin-left: 20px;
    margin-top: 10px;
}