.button_terug {
    /* Reset standaard browser styles */
    background:#1565c0;    /* Blauwe achtergrond */
    color: #fff;               /* Witte tekst */
    border: none;              /* Geen standaard rand */
    outline: none;             /* Geen outline bij focus */
    
    /* Vormgeving */
    padding: 12px 18px;        /* Binnenruimte */
    font-size: 16px;           /* Tekstgrootte */
    font-weight: bold;         /* Tekst dikker */
    border-radius: 8px;        /* Ronde hoeken */
    cursor: pointer;           /* Pointer cursor bij hover */
    
    /* Schaduw en animatie */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      max-width: 800px;
      margin: 2rem auto;
      padding: 1rem;
      background-color: #f5f5f5;
      color: #333;
    }
    h1, h2 {
      color: #004080;
    }
    section {
      background-color: #fff;
      padding: 1rem 2rem;
      margin-bottom: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    p {
      margin-bottom: 1rem;
    }