    :root {
      --primary: #0d5db8;
      --primary-dark: #094a91;
      --accent: #28c840;
      --text: #1f2a37;
      --muted: #6b7280;
      --bg: #f3f4f6;
      --white: #ffffff;
      --section-width: 1100px;
      --radius: 14px;
      --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }
    @font-face {
        font-family: 'Agenor Neue';
        src: url('fonts/AgenorNeue-Regular.woff2') format('woff2'),
            url('fonts/AgenorNeue-Regular.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }
    .pdf-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .pdf-viewer-wrapper {
      background: #e5e7eb;
      border-radius: 14px;
      padding: 0.75rem;
      box-shadow: var(--shadow);
    }

    .pdf-viewer {
      width: 100%;
      height: 85vh;
      min-height: 700px;
      border: 0;
      border-radius: 10px;
      background: #fff;
    }

    @media (max-width: 900px) {
      .pdf-viewer {
        height: 75vh;
        min-height: 520px;
      }
    }

    @media (max-width: 600px) {
      .pdf-viewer {
        height: 70vh;
        min-height: 420px;
      }
    }
    .noto-color-emoji-regular {
      font-family: "Noto Color Emoji", sans-serif;
      font-weight: 400;
      font-style: normal;
    }

    .form-alert {
      margin-bottom: 1rem;
      padding: 1rem 1.2rem;
      border-radius: 10px;
      font-size: 0.98rem;
      line-height: 1.6;
    }

    .form-alert-success {
      background: #eaf8ee;
      color: #166534;
      border: 1px solid #b7e4c7;
    }

    .form-alert-error {
      background: #fef2f2;
      color: #991b1b;
      border: 1px solid #fecaca;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Agenor Neue, Helvetica, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      padding-left: 1.2rem;
    }
    ul li {
      list-style-type: none;
      margin-bottom: 10px;
    }
    ul li strong {
      font-weight: 400;
      letter-spacing: 0.4px;
      font-size: 1.4em;
    }

    .nav-item {
      position: relative;
    }

    .submenu-toggle {
      background: none;
      border: 0;
      font: inherit;
      color: #334155;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0;
    }

    .submenu-toggle:hover,
    .submenu-toggle:focus-visible {
      color: var(--primary);
    }

    .submenu-arrow {
      font-size: 0.85rem;
      transition: transform 0.25s ease;
    }

    .has-submenu.open .submenu-arrow {
      transform: rotate(180deg);
    }

   .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 0.9rem 0 0.6rem;
      display: none;
      z-index: 200;
    }
    .has-submenu::after {
      content: "";
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      height: 14px;
    }
    .submenu a {
      display: block;
      padding: 0.7rem 1rem;
      color: #334155;
      white-space: nowrap;
    }

    .submenu a:hover,
    .submenu a:focus-visible {
      background: #f3f4f6;
      color: var(--primary);
    }


    .container {
      width: min(100% - 2rem, var(--section-width));
      margin: 0 auto;
    }

    .section {
      padding: 70px 0;
    }

    .section-white {
      background: var(--white);
    }

    .section-gray {
      background: var(--bg);
    }

    .title {
      text-align: center;
      color: var(--primary);
      font-size: 3rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    h3 {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 200;
    }

    .btn {
      display: inline-block;
      background: var(--primary);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: bold;
      transition: 0.25s ease;
    }

    .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .btn-green {
      background: var(--accent);
    }

    .btn-green:hover {
      background: #1fa635;
    }

    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }

    .topbar {
      width: 100%;
      background: var(--primary);
      color: var(--white);
      text-align: center;
      padding: 0.7rem 1rem;
      font-size: 1rem;
      line-height: 1.4;
    }

    .nav {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .menu-logo {
      height: 62px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 1.2rem;
      color: #334155;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      background: transparent;
      cursor: pointer;
      padding: 0;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 3px;
      margin: 0 auto;
      background: var(--primary);
      border-radius: 999px;
      transition: 0.25s ease;
    }
    .hero {
      min-height: 640px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      background: url('images/bg.jpg') center/cover no-repeat;
    }

    .hero-content {
      width: min(100% - 2rem, 900px);
    }
    .hero-content .btn {
      margin-bottom: 20px;
    }
    .hero-logo {
      display: grid;
      place-items: center;
      margin: 1.2rem auto 1.5rem;
    }

    .hero h1 {
      font-size: clamp(1.5rem, 4vw, 2.4rem);
      text-shadow: ;
      margin-bottom: 1rem;
      text-shadow: 1px 1px 2px #6c6a6a;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
    }

    .two-col {
      display: grid;
      margin-top: 50px;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3rem;
      align-items: center;
    }

    .noto-color-emoji-regular.ico {
      margin-right: 5px;
    }


    .about-section {
      width: 100%;
      padding: 0;
      background: url('images/about-bg.jpg') center/cover no-repeat;
    }


    .about-box {
      max-width: 1380px;
      margin: 0 auto;
      background-color: #f6f6f6;
      padding: 3rem;
    }

    .about-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .about-item h3 {
      color: var(--primary);
      margin-bottom: 0.7rem;
    }

    .about-item h3 span {
      font-size: 0.55em;
      font-weight: 400;
      color: var(--primary);
    }

    .about-item p {
      margin-bottom: 0.9rem;
    }

    .about-quote {
      padding-left: 1rem;
      border-left: 3px solid var(--primary);
      font-style: italic;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .card h3 {
      color: var(--primary);
      margin-bottom: 0.8rem;
    }

    #activiteiten p {
      margin-bottom: 20px;
    }

    .activity-list li {
      margin-bottom: 0.7rem;
      list-style-type: disc;
    }

    #activiteiten .btn {
      max-width: 500px;
      margin: 50px auto 20px;
      display: block;
      text-align: center;
    }

    .center {
      text-align: center;
    }

    .policy-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .beleid-container {
      max-width: 1120px;
    }

    .policy-grid-custom {
      gap: 2rem;
      align-items: stretch;
    }

    .policy-card {
      position: relative;
      background: #efefef;
      border-radius: 14px;
      padding: 7.8rem 3.2rem 2.8rem;
      min-height: 640px;
    }

    .policy-label {
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      min-width: 220px;
      background: #f8f8f8;
      color: #111;
      text-align: center;
      font-size: 1.15rem;
      padding: 0.95rem 1.5rem;
      border-radius: 12px;

    }

    .policy-card-content p {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.8rem;
      color: #111;
    }

    .policy-list {
      padding-left: 0;
      margin: 0 0 1.8rem 0;
    }

    .policy-list li {
      position: relative;
      list-style: none;
      margin-bottom: 1.8rem;
      padding-left: 1.4rem;
      line-height: 1.8;
      color: #111;
    }

    .policy-list li::before {
      content: "·";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.5rem;
      line-height: 1.2;
    }

    .board-grid,
    .contact-grid,
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      align-items: center;
    }

    .board-section {
      background: #fff;
    }

    .board-container {
      max-width: 1080px;
    }

    .board-grid-custom {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(320px, 420px);
      gap: 4.5rem;
      align-items: center;
    }

    .board-text {
      max-width: 470px;
    }

    .board-title {
      text-align: left;
      margin-bottom: 1.8rem;
    }

    .board-text p {
      font-size: 1rem;
      line-height: 1.9;
      color: #111;
    }

    .board-divider {
      width: 100%;
      max-width: 360px;
      height: 34px;
      background: #ececec;
      border-radius: 8px;
      margin-top: 2rem;
    }

    .board-photo-custom img {
      width: 100%;
      border-radius: 10px;
      display: block;
    }

    .reward-block {
      max-width: 760px;
      margin: 5rem auto 0;
      text-align: center;
    }

    .reward-label {
      max-width: 540px;
      margin: 0 auto 2.2rem;
      background: #ececec;
      border-radius: 10px;
      padding: 1.6rem 2rem;
    }

    .reward-label h2 {
      color: var(--primary);
      font-size: 3rem;
      font-weight: 500;
      line-height: 1.1;
    }

    .reward-content {
      max-width: 760px;
      margin: 0 auto;
    }

    .reward-content p {
      font-size: 1rem;
      line-height: 1.9;
      color: #111;
      margin-bottom: 1.6rem;
    }

    .reward-intro {
      font-size: 1.3rem !important;
      margin-bottom: 1.8rem;
    }

    .anbi-section {
      background: url('images/anbi-bg.jpg') center/cover no-repeat;
      padding: 0;
    }

    .anbi-container {
      max-width: 1380px;
      padding-top: 55px;
      padding-bottom: 55px;
    }

    .anbi-card {
      background: var(--primary);
      color: var(--white);
      border-radius: 12px;
      padding: 3.6rem 7.5rem 4.5rem;
    }

    .anbi-card h2 {
      text-align: center;
      font-size: 3.3rem;
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 1.2rem;
      color: var(--white);
    }

    .anbi-line {
      width: 100%;
      max-width: 920px;
      height: 3px;
      background: rgba(255, 255, 255, 0.85);
      margin: 0 auto 2.4rem;
      border-radius: 999px;
    }

    .anbi-intro {
      text-align: center;
      font-size: 1rem;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto 3.5rem;
      color: rgba(255, 255, 255, 0.98);
    }

    .anbi-grid-custom {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 4.5rem;
      row-gap: 4rem;
    }

    .anbi-item h3 {
      color: var(--white);
      font-size: 1.85rem;
      font-weight: 400;
      margin-bottom: 1.6rem;
    }

    .anbi-item p {
      color: rgba(255, 255, 255, 0.98);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 0.2rem;
    }
    .downloads {
      display: grid;
      gap: 0.8rem;
    }

    .download-item {
      background: var(--white);
      padding: 1rem 1.2rem;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .donate-box {
      background: var(--white);
      padding: 2rem;
      max-width: 800px;
      margin: 2rem auto 0;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .contact-box {
      background: #ececec;
      border-radius: var(--radius);
      padding: 2rem;
    }

    .contact-info {
      display: grid;
      gap: 0.7rem;
    }

    form {
      display: grid;
      gap: 0.9rem;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.9rem 1rem;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font: inherit;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    footer {
      background: var(--white);
      padding: 2rem 0;
      border-top: 1px solid #e5e7eb;
    }

    .footer-grid {
      align-items: start;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-card {
      background: #f8fafc;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: var(--shadow);
      justify-self: end;
      max-width: 280px;
    }
    /* Desktop: open bij hover én toetsenbordfocus */
    @media (min-width: 901px) {
      .has-submenu:hover .submenu,
      .has-submenu:focus-within .submenu,
      .has-submenu.open .submenu {
        display: block;
      }
    }

    @media (max-width: 900px) {
      .two-col,
      .card-grid,
      .policy-grid,
      .board-grid,
      .contact-grid,
      .footer-grid,
      .anbi-grid {
        grid-template-columns: 1fr;
      }

      .policy-card {
        min-height: auto;
        padding: 4.5rem 1.6rem 2rem;
      }

      .policy-label {
        min-width: 180px;
        font-size: 1.05rem;
      }

      .footer-card {
        justify-self: start;
      }

      .topbar {
        font-size: 0.92rem;
        padding: 0.8rem 1rem;
      }

      .nav {
        min-height: 82px;
        position: relative;
        padding: 0.8rem 0;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
      }

      .board-grid-custom {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .board-text {
        max-width: 100%;
      }

      .board-title {
        text-align: center;
      }

      .board-divider {
        margin: 2rem auto 0;
      }

      .reward-block {
        margin-top: 3.5rem;
      }

      .reward-label h2 {
        font-size: 2.2rem;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-links {
        display: none;
        width: 100%;
        grid-column: 1 / -1;
        margin-top: 0.8rem;
        padding: 1rem 0 0.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        border-top: 1px solid #e5e7eb;
      }

      .nav-links.active {
        display: flex;
      }

      .hero {
        min-height: 560px;
      }

      .anbi-grid-custom {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 2.5rem;
      }

      .anbi-card {
        padding: 2.5rem 2rem 3rem;
      }

      .anbi-card h2 {
        font-size: 2.5rem;
      }

      .anbi-line {
        margin-bottom: 2rem;
      }

      .anbi-intro {
        margin-bottom: 2.5rem;
      }
       .nav-item {
        width: 100%;
      }

      .submenu-toggle {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        text-align: left;
      }

      .submenu {
        position: static;
        display: none;
        min-width: 100%;
        box-shadow: none;
        background: transparent;
        padding: 0.4rem 0 0.2rem 1rem;
        margin-top: 0.3rem;
      }

      .has-submenu.open .submenu {
        display: block;
      }

      .submenu a {
        padding: 0.55rem 0;
      }
    }


    @media (max-width: 600px) {
      .section {
        padding: 50px 0;
      }

      .title {
        font-size: 1.7rem;
      }
      h2,h3 {
        text-align: center;
      }

      .hero p {
        font-size: 1rem;
      }
      .reward-label {
        padding: 1.2rem 1rem;
      }

      .reward-label h2 {
        font-size: 1.8rem;
      }

      .reward-intro {
        font-size: 1.1rem !important;
      }
      .hero-logo {
        width: 130px;
        height: 130px;
        font-size: 1.5rem;
      }

      .policy-card-content p,
      .policy-list li {
        font-size: 0.98rem;
      }

      .policy-label {
        width: calc(100% - 3rem);
        max-width: 240px;
      }

      .anbi-card {
        padding: 2rem 1.2rem 2.4rem;
      }

      .anbi-card h2 {
        font-size: 1.9rem;
      }

      .anbi-item h3 {
        font-size: 1.45rem;
      }

      .anbi-item p,
      .anbi-intro {
        font-size: 0.96rem;
      }
    }