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

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #EEF3FA;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #1A2A3A;
    }

    .kaart {
      background: white;
      border-radius: 20px;
      padding: 48px 40px;
      width: 90%;
      max-width: 420px;
      box-shadow: 0 4px 32px rgba(30,58,110,0.10);
      text-align: center;
    }

    .logo { font-size: 3rem; margin-bottom: 12px; }

    h1 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #1E3A6E;
      margin-bottom: 6px;
    }

    p {
      font-size: 0.9rem;
      color: #888;
      margin-bottom: 36px;
    }

    .keuze-grid {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .keuze-knop {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #EEF3FA;
      border: 2px solid #D0DCF0;
      border-radius: 14px;
      padding: 18px 20px;
      text-decoration: none;
      color: #1A2A3A;
      transition: border-color 0.15s, background 0.15s, transform 0.1s;
    }

    .keuze-knop:hover {
      border-color: #2E6DB4;
      background: #E4EEF8;
      transform: translateY(-1px);
    }

    .keuze-ikoon {
      font-size: 2rem;
      flex-shrink: 0;
      width: 48px;
      text-align: center;
    }

    .keuze-tekst { text-align: left; }
    .keuze-tekst strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
    .keuze-tekst span   { font-size: 0.82rem; color: #888; }

    footer {
      margin-top: 32px;
      font-size: 0.75rem;
      color: #aaa;
    }
