 
    :root {
      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-heading: 'Space Grotesk', var(--font-sans);
      
      --orange: #b65108;
      --green: #1d9b1d;
      --blue: #0d61b7;
      --primary: var(--orange);
      --text: #1a1a1a;
      --text-muted: #555;
      --bg: #ffffff;
      --bg-light: #f8f9fa;
      --border: #e2e8f0;
      --radius: 14px;
      --radius-sm: 10px;
      --shadow: 0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
      --transition: all 0.25s ease;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--text); }
    body { margin: 0; background: var(--bg); }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { padding: 0; margin: 0; list-style: none; }
    h1, h2, h3 { margin: 0 0 0.5em; font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
    p { margin: 0 0 1em; }
    .muted { color: var(--text-muted); font-size: 0.95rem; }
    .small { font-size: 0.85rem; }
    .text-center { text-align: center; }

    .container {
      width: min(100%, 1240px);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Header */
    .site-header {
      background: white;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary);
    }
    .logo-img { height: 46px; }
    .logo-text { font-family: var(--font-heading); }

    .nav ul {
      display: flex;
      gap: 2rem;
      font-weight: 600;
    }
    .nav a {
      padding: 0.5rem 0;
      position: relative;
      transition: var(--transition);
    }
    .nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2.5px;
      background: var(--primary);
      transition: var(--transition);
    }
    .nav a:hover, .nav a.active {
      color: var(--primary);
    }
    .nav a:hover::after, .nav a.active::after {
      width: 100%;
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 0.85rem 1.8rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      font-size: 1rem;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    .btn-primary { background: var(--orange); color: white; border: 2px solid var(--orange); }
    .btn-primary:hover { background: #b65108; border-color: #b65108; transform: translateY(-2px); }
    .btn-green { background: var(--green); color: white; border: 2px solid var(--green); }
    .btn-green:hover { background: #177a17; border-color: #177a17; transform: translateY(-2px); }
    .btn-blue { background: var(--blue); color: white; border: 2px solid var(--blue); }
    .btn-blue:hover { background: #0b51a0; border-color: #0b51a0; transform: translateY(-2px); }
    .btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }

    /* Hero */
    .hero {
      padding: 4.5rem 0 3.5rem;
      background: linear-gradient(135deg, #fff8f0 0%, #f0fdf4 50%, #eff6ff 100%);
      position: relative;
      overflow: hidden;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .lead {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-visual {
      text-align: center;
      margin-top: 2rem;
    }
    .hero-logo {
      max-width: 380px;
      margin: 0 auto;
      filter: drop-shadow(0 6px 16px rgba(0,0,0,0.1));
    }

    /* Sections */
    .section {
      padding: 4rem 0;
    }
    .bg-light { background: var(--bg-light); }

    /* Dimensie Cards */
    .dim-grid {
      display: grid;
      gap: 1.8rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      margin: 2rem 0;
    }
    .dim-card {
      background: white;
      padding: 2rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border-left: 6px solid;
      transition: var(--transition);
      text-align: center;
    }
    .dim-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    .dim-card:nth-child(1) { border-left-color: var(--orange); }
    .dim-card:nth-child(2) { border-left-color: var(--green); }
    .dim-card:nth-child(3) { border-left-color: var(--blue); }
    .dim-card h3 {
      color: inherit;
      font-size: 1.5rem;
      margin: 0.75rem 0;
    }
    .dim-card:nth-child(1) h3 { color: var(--orange); }
    .dim-card:nth-child(2) h3 { color: var(--green); }
    .dim-card:nth-child(3) h3 { color: var(--blue); }

    /* Voor wie */
    .voorwie-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* FAQ */
    details {
      margin-bottom: 1.2rem;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    summary {
      background: #f1f5f9;
      padding: 1.2rem 1.6rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
    }
    summary:hover { background: #e2e8f0; }
    summary::after {
      content: '+';
      font-weight: bold;
      font-size: 1.6rem;
      color: var(--blue);
    }
    details[open] summary::after { content: '−'; }
    details[open] > div {
      padding: 1.6rem;
      background: white;
      border-top: 1px solid var(--border);
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, var(--blue), var(--green), var(--orange));
      color: white;
      text-align: center;
    }
    .cta h2, .cta .muted { color: white; }
    .cta .btn-primary {
      background: white;
      color: var(--green);
      border-color: white;
    }
    .cta .btn-primary:hover {
      background: #fff;
      color: #9a4507;
      transform: translateY(-2px);
    }

    /* Footer */
    .site-footer {
      background: #1a1a1a;
      color: #2b2b2b;
      padding: 2.5rem 0;
      font-size: 0.9rem;
    }
    .footer-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .site-footer a {
      color: #2b2b2b;
      text-decoration: underline;
    }
    .site-footer a:hover { color: var(--orange); }

    /* Mobile */
    @media (max-width: 768px) {
      .nav { display: none; }
      .mobile-menu-toggle { display: block; }
      .hero h1 { font-size: 2.4rem; }
      .btn { width: 100%; }
    }

    input[type="checkbox"] { display: none; }
    #mobile-menu:checked ~ .nav {
      display: flex;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: white;
      flex-direction: column;
      padding: 1rem 1.5rem;
      box-shadow: var(--shadow);
      border-top: 1px solid var(--border);
    }
    #mobile-menu:checked ~ .nav ul { flex-direction: column; gap: 1rem; }
  
    


/* ========================================
   DOCENTENCHECK – TRI-PLANES + RING-SEGMENTEN (zoals origineel)
   ======================================== */

html, body {
  min-height: 100%;
  background-image:
    /* zachte kleurzweem (heel licht, voor samenhang) */
    radial-gradient(1200px 800px at 90% -12%, rgba(13,148,136,.18), transparent 60%),
    radial-gradient(1100px 700px at -12% 92%, rgba(6,182,212,.16), transparent 58%),
    /* PLANE A — BLAUW (rechtsboven) */
    url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 1600 900%27%3E%3Cdefs%3E%3Cfilter id=%27ds%27 x=%27-20%%27 y=%27-20%%27 width=%27140%%27 height=%27140%%27%3E%3CfeGaussianBlur in=%27SourceAlpha%27 stdDeviation=%2720%27/%3E%3CfeOffset dx=%271%27 dy=%2712%27 result=%27o%27/%3E%3CfeColorMatrix in=%27o%27 type=%27matrix%27 values=%270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .22 0%27/%3E%3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in=%27SourceGraphic%27/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg transform=%27rotate(-6 1200 120)%27%3E%3Cpolygon filter=%27url(%23ds)%27 points=%27860,0 1600,0 1600,500 1120,420%27 fill=%27%230d61b7%27 fill-opacity=%270.85%27/%3E%3C/g%3E%3C/svg%3E"),
    /* PLANE C — ORANJE (linksonder) */
    url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 1600 900%27%3E%3Cdefs%3E%3Cfilter id=%27ds%27 x=%27-20%%27 y=%27-20%%27 width=%27140%%27 height=%27140%%27%3E%3CfeGaussianBlur in=%27SourceAlpha%27 stdDeviation=%2722%27/%3E%3CfeOffset dx=%270%27 dy=%2714%27 result=%27o%27/%3E%3CfeColorMatrix in=%27o%27 type=%27matrix%27 values=%270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .22 0%27/%3E%3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in=%27SourceGraphic%27/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg transform=%27rotate(3 320 780)%27%3E%3Cpolygon filter=%27url(%23ds)%27 points=%270,720 760,620 1120,900 0,900%27 fill=%27%23b65108%27 fill-opacity=%270.78%27/%3E%3C/g%3E%3C/svg%3E"),
    /* Zachte bokeh voor extra diepte */
    radial-gradient(120px 120px at 86% 16%, rgba(255,255,255,.16), transparent 62%),
    radial-gradient(140px 140px at 18% 82%, rgba(255,255,255,.12), transparent 64%),
    /* film-grain (heel subtiel) */
    url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27300%27 height=%27300%27 viewBox=%270 0 300 300%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.7%27 numOctaves=%272%27 seed=%279%27/%3E%3CfeColorMatrix type=%27saturate%27 values=%270%27/%3E%3CfeComponentTransfer%3E%3CfeFuncA type=%27table%27 tableValues=%270 0.012%27/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width=%27100%%27 height=%27100%%27 filter=%27url(%23n)%27 opacity=%270.07%27/%3E%3C/svg%3E");
  background-size:
    auto, auto,
    170% 54vh,
    180% 56vh,
    auto, auto,
    300px 300px;
  background-position:
    center, center,
    top right,
    left bottom,
    86% 16%, 18% 82%,
    0 0;
  background-repeat:
    no-repeat, no-repeat,
    no-repeat, no-repeat,
    no-repeat, no-repeat,
    repeat;
  background-attachment:
    scroll, scroll,
    fixed, fixed,
    scroll, scroll,
    scroll;
  background-blend-mode:
    screen, screen,
    normal, normal,
    soft-light, soft-light,
    soft-light;
  background-color: var(--bg);
}

/* Content boven achtergrond */
main, .container, .site-header, .site-footer {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Print: geen achtergrond */
@media print {
  html, body { background: #fff !important; }
  html::after { display: none !important; }
}

/* RING-SEGMENTEN (oranje, groen, blauw) */
html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("/assets/groen.svg"),
    url("/assets/blauw.svg"),
    url("/assets/oranje.svg");
  --seg: 360px;
  background-size: var(--seg) var(--seg), var(--seg) var(--seg), var(--seg) var(--seg);
  background-position:
    20% 95%,   /* groen – linksonder */
    85% 90%,   /* blauw – rechtsonder */
    5% 15%;   /* oranje – linksboven */
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.5;
}

/* ========================================
   HEADER – LOGO + TEKST (zoals screenshot)
   ======================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.logo-subtitle {
  font-size: 0.85rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 2px;
}

/* Header inner: ruimte tussen logo en navigatie */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Nav links – iets strakker */
.nav ul {
  display: flex;
  gap: 2rem;
  font-weight: 600;
  margin: 0;
}

.nav a {
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
  color: var(--text);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--orange);
  transition: var(--transition);
}

.nav a:hover, .nav a.active {
  color: var(--orange);
}

.nav a:hover::after, .nav a.active::after {
  width: 100%;
}

/* Mobiel: verberg nav, toon toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  #mobile-menu:checked ~ .nav {
    display: block;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo-title {
    font-size: 1.35rem;
  }

  .logo-subtitle {
    font-size: 0.78rem;
  }
}

/* ========================================
   HERO – TEKST LINKS + LOGO RECHTS MET WIT KADER
   ======================================== */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 100%;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* LOGO MET WIT KADER */
.hero-logo-box {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.hero-logo-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

/* MOBIEL: logo onder tekst */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo-box {
    max-width: 380px;
    padding: 1.5rem;
  }

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

/* ===== Hoe-pagina helpers ===== */
.border-orange { border-left-color: var(--orange) !important; }
.border-green  { border-left-color: var(--green)  !important; }
.border-blue   { border-left-color: var(--blue)   !important; }

/* Zorg dat headings de kaartkleur ‘meenemen’ */
.dim-card.border-orange > h2 { color: var(--orange); }
.dim-card.border-orange > h3 { color: var(--orange); text-align: left; }
.dim-card.border-green  > h2 { color: var(--green); }
.dim-card.border-green  > h3 { color: var(--green); text-align: left; }
.dim-card.border-blue   > h2 { color: var(--blue) ; }
.dim-card.border-blue   > h3 { color: var(--blue) ; text-align: left; }

/* Rij-lijsten met label-badges (Start, Inzicht, etc.) */
.var-list { margin: 0.5rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; }
.var-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}
.var-name { display: block; }
.var-kind {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* Kleuren voor badges op basis van kaartkleur-omgeving */
.dim-card.border-green  > .var-list .var-kind { background:#f0fdf4; border-color:#bbf7d0; }
.dim-card.border-blue   > .var-list .var-kind { background:#eff6ff; border-color:#bfdbfe; }
.dim-card.border-orange > .var-list .var-kind { background:#fff7ed; border-color:#fed7aa; }



/* Kleine responsive verfijning */
@media (max-width: 560px) {
  .var-row { grid-template-columns: 1fr; }
  .var-kind { justify-self: start; }
}

/* Basis voor HOE-kaarten – linkslijnend, beïnvloedt .dim-card niet */
.card { 
  text-align: left;
}

/* Lijst-rijen in kaders: tekst links en badges netjes bovenaan */
.var-row { 
  align-items: start; 
}
.var-name, 
.var-kind { 
  text-align: left; 
}


/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 900px){
  .contact-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.contact-tile {
  --stripe: var(--primary);
  border-left: 8px solid var(--stripe);
  height: 100%;
  display: grid;
  gap: 10px;
  align-content: start;
  text-align: left;
  padding-left: 10px;
  padding-top: 10px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
}
/* Contact-tegels: maak het een kolomlayout */
.contact-tile {
  display: flex;               /* i.p.v. grid */
  flex-direction: column;
  height: 100%;
  padding: 12px 16px 16px 18px; /* beetje extra lucht links/rechts */
}

/* Titel + tekst boven; knoppen naar beneden en gecentreerd */
.contact-tile .contact-actions {
  margin-top: auto;            /* duwt de knoppen naar de onderkant */
  display: flex;
  justify-content: center;     /* midden uitlijnen */
  gap: 10px;
}

/* Optioneel: gelijke minimale hoogte voor stabiele uitlijning */
@media (min-width: 900px){
  .contact-tile { min-height: 180px; } /* pas aan naar smaak */
}


.contact-tile h3 { margin: 0; color: var(--stripe); }
.contact-actions { display:flex; flex-wrap:wrap; gap:10px; }

/* Kleur per tegel (1: Mail, 2: Bellen/SMS, 3: Apps) */
.contact-grid .contact-tile:nth-child(1){ --stripe:#0d61b7; }
.contact-grid .contact-tile:nth-child(2){ --stripe:#1d9b1d; }
.contact-grid .contact-tile:nth-child(3){ --stripe:#b65108; }

/* --- Mobile menu: klikbaar maken --- */
@media (max-width: 768px){
  .site-header { position: sticky; top: 0; z-index: 1000; }

  /* Uitgeklapte nav boven hero/overlays */
  #mobile-menu:checked ~ .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 1002;
    background: var(--panel);
    pointer-events: auto;
  }

  /* Zorg dat het label niet over de links heen hangt */
  .mobile-menu-toggle { position: relative; z-index: 1001; }

  /* Links altijd klikbaar */
  .nav, .nav * { pointer-events: auto; }
}

/* Decoratieve overlays mogen geen clicks vangen */
.site-header::before,
.site-header::after,
.hero::before,
.hero::after,
.header-inner::before,
.header-inner::after {
  pointer-events: none;
}

/* ==== Mobile header: vaste menuknop rechtsboven + solide dropdown ==== */
@media (max-width: 768px){
  .header-inner{ position: relative; align-items: center; }

  /* Menuknop altijd rechtsboven, los van titel/subtitel-hoogte */
  .mobile-menu-toggle{
    position: absolute;
    top: 10px; right: 12px;
    z-index: 1001;
    padding: 6px 10px;
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 8px; /* iets vierkanter met zachte hoeken */
    font-family: inherit;        /* zelfde font als header/nav */
    font-weight: 600;            /* optioneel, match met .nav a */
    font-size: 0.95rem;          /* optioneel, iets kleiner als links */
    letter-spacing: 0.02em;      /* optioneel voor consistentie */
    text-transform: uppercase;   /* optioneel, alleen als je MENU in hoofdletters wilt */


  }

  /* Logo-blok mag doorlopen, menu blijft rechtsboven */
  .logo-text-wrap{ min-width: 0; }

  /* Uitgeklapt menu: solide (licht transparant) paneel boven content */
  #mobile-menu:checked ~ .nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: color-mix(in srgb, var(--panel) 90%, rgba(0,0,0,0) 10%); /* zacht, niet doorzichtig */
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
    z-index: 1002;
  }

  /* Linkjes goed leesbaar en klikbaar */
  .nav ul{ display: flex; flex-direction: column; margin: 0; padding: 6px 8px; }
  .nav li{ border-bottom: 1px solid var(--border); }
  .nav li:last-child{ border-bottom: 0; }
  .nav a{
    display: block;
    padding: 12px 10px;
    text-align: left;
    background: transparent;
  }
}

/* Zorg dat content eronder nooit de clicks vangt */
.site-header, .nav{ pointer-events: auto; }
.hero, .hero *{ pointer-events: auto; z-index: 0; }



/* ========================================
   EINDE HOMESTYLE.CSS
   ======================================== */