    :root {
      --primary: #355c7d;
      --primary-light: #6c5b7b;
      --accent: #f8b195;
      --bg: #f7f7f7;
      --text: #333;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      font-size: 16px; /* comfortable on mobile */
    }

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

    img {
      max-width: 100%;
      height: auto;
    }

    header {
      background: white;
      border-bottom: 1px solid #e0e0e0;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .nav-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-wrap img {
      height: 88px;
      width: auto;
      font-size: 0.8rem;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      font-size: 0.95rem;
    }

    .nav-links a {
      padding: 0.25rem 0.5rem;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    @media (max-width: 800px) {
     .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 1rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        flex-direction: column;
        padding: 0.5rem 0;
        min-width: 180px;
      }

      .nav-links a {
        padding: 0.5rem 1rem;
      }

      .nav-links a + a {
        border-top: 1px solid #eee;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

      .nav-container {
        position: relative;
      }
    }

    .hero {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
      padding: 4rem 1rem 3rem;
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      gap: 2rem;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(2.1rem, 3vw, 2.7rem);
      margin-bottom: 0.5rem;
    }

    .hero h2 {
      font-size: 1.1rem;
      font-weight: 400;
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .hero p {
      margin-bottom: 1.5rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .btn-primary {
      background: white;
      color: var(--primary);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .hero-image {
      text-align: center;
    }

    .hero-image img {
      max-width: 50%;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 1rem 4rem;
    }

    section {
      margin-bottom: 3rem;
    }

    section:last-of-type {
      margin-bottom: 0;
    }

    h2.section-title {
      font-size: 1.6rem;
      margin-bottom: 0.75rem;
      color: var(--primary);
    }

    .section-intro {
      margin-bottom: 1.25rem;
      color: #555;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 1.75rem;
      align-items: flex-start;
    }

    .card {
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    .card-image {
      text-align: center;
    }

    .card-image img {
      width: auto;
      height: 150px;
      margin-top: 20px;
      border-radius: 12px;
      padding: 0.75rem;
      /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); */
    }

    .pill {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 999px;
      background: rgba(53, 92, 125, 0.06);
      color: var(--primary);
      margin-bottom: 0.75rem;
    }

    ul {
      padding-left: 1.1rem;
    }

    ul li {
      margin-bottom: 0.4rem;
    }

    .highlight {
      border-left: 4px solid var(--accent);
      padding-left: 0.9rem;
      margin: 0.75rem 0 0.5rem;
    }

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

    .contact-box {
      background: var(--primary);
      color: white;
      border-radius: 16px;
      padding: 1.75rem;
      display: grid;
      gap: 1.5rem;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      align-items: center;
    }

    .contact-box h2 {
      margin-bottom: 0.75rem;
      font-size: 1.45rem;
    }

    .contact-box a {
      color: white;
    }

    .contact-details p {
      margin-bottom: 0.3rem;
    }

    .contact-meta {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    footer {
      background: #111827;
      color: #e5e7eb;
      padding: 1.5rem 1rem;
      margin-top: 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      font-size: 0.85rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    @media (max-width: 800px) {
      body {
        font-size: 17px; /* iets groter op mobiel */
      }

      .hero-inner,
      .grid-2,
      .contact-box {
        grid-template-columns: minmax(0, 1fr);
      }

      header {
        position: static;
      }

      .nav-links {
        display: none; /* eventueel later vervangen door mobiel menu */
      }

      .hero-image img {
        max-width: 70%;
      }

      main {
        padding: 2rem 1rem 3rem;
      }

      .contact-box {
        text-align: left;
      }
    }