
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background-color: #f4f4f4;
      color: #333;
    }

    main.homepage { padding: 0; }

    /* Koppen */
 .wedstrijden-banner h2,
.berichten-sectie h2,
.sponsoren-sectie h2 {
  background-color: #10B242;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 20px;
}

/* Secties homepage consistent */
.wedstrijden-banner,
.berichten-sectie,
.sponsoren-sectie {
  max-width: 1200px;   /* allemaal dezelfde breedte */
  margin: 60px auto;   /* centreren */
  padding: 0 20px;     /* ruimte links/rechts */
}

    /* Wedstrijden */
  
    .wedstrijden-lijst { display: flex; justify-content: center; margin-bottom: 20px; }
    .wedstrijden-lijst ul { list-style: none; padding: 0; margin: 0 auto; text-align: left; max-width: 600px; }
    .wedstrijden-lijst li { margin-bottom: 8px; font-size: 1.1em; line-height: 1.4; }
    .wedstrijd-knoppen { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .wedstrijd-button {
      background-color: #10B242;
      color: white;
      border: none;
      padding: 8px 14px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .wedstrijd-button:hover { background-color: #0e9a3a; }

    /* Nieuws */

    .berichten-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 0;
    }
    .bericht-blok {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
      height: 100%;
    }
    .bericht-blok:hover { transform: translateY(-4px); }
    .bericht-afbeelding img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }
    .bericht-inhoud {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .categorie-datum { font-size: 0.85em; color: #777; margin-bottom: 6px; }
    .bericht-blok h3 { margin: 0 0 10px; font-size: 1.2em; color: #061165; }
    .bericht-tekst {
      flex-grow: 1;
      font-size: 1em;
      color: #444;
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .lees-meer {
      align-self: flex-start;
      background-color: #10B242;
      color: white;
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .lees-meer:hover { background-color: #0e9a3a; }
    .bericht-link { text-decoration: none; color: inherit; display: block; }

    .nieuws-knop {
      text-align: center;
      margin: 2em 0;
    }

    /* Sponsoren */

    .sponsoren-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 30px 0;
    }
    .sponsor-kaart {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 20px;
      width: 100%;
      max-width: 480px;
      box-sizing: border-box;
      margin: 10px;
      min-height: 160px;
    }
    .sponsor-kaart img {
      max-width: 120px;
      height: auto;
      border-radius: 6px;
      margin-right: 20px;
      flex-shrink: 0;
    }
    .sponsor-info { flex: 1; }
    .sponsor-info h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.2em; color: #061165; }
    .sponsor-info p { margin: 6px 0; font-size: 1em; color: #333; }
    .sponsor-info a { color: #061165; text-decoration: none; }
    .sponsor-info a:hover { text-decoration: underline; }
    .sponsor-kaart.leeg { flex-direction: column; justify-content: center; text-align: center; }
    .sponsor-kaart.leeg h3 { font-size: 1.1em; color: #061165; }
    .sponsor-kaart.leeg a { font-weight: bold; }

    @media (max-width: 700px) {
      .sponsor-kaart { flex-direction: column; text-align: center; max-width: 100%; }
      .sponsor-kaart img { margin: 0 0 15px 0; }
      .sponsor-info { text-align: center; }
    }
