    /* Algemene reset & basis */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      background-color: #f7f7f7;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      max-width: 900px;
      width: 100%;
      background-color: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .page-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-header h1 {
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .page-subtitle {
      color: #666;
      font-size: 0.95rem;
    }

    .highlight-box {
      background-color: #fff3cd;
      border-left: 6px solid #ffecb5;
      padding: 15px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      font-weight: 500;
    }

    .section {
      margin-bottom: 25px;
    }

    .section h2 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #222;
    }

    .section p, 
    .section ul {
      font-size: 1rem;
      color: #444;
    }

    .section ul {
      padding-left: 20px;
      list-style-type: disc;
    }

    .section ul li {
      margin-bottom: 6px;
    }

    a {
      color: #007BFF;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .contact-info {
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
      font-size: 0.95rem;
      color: #555;
    }

    footer {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9rem;
      color: #888;
    }

    /* Responsive */
    @media (max-width: 768px) {
      body {
        padding: 15px;
      }

      .container {
        padding: 25px;
      }

      .page-header h1 {
        font-size: 1.6rem;
      }

      .section h2 {
        font-size: 1.2rem;
      }
    }