/* Einheitliches Layout für alle iframe-Inhaltsseiten */
html, body {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #fff;
    padding: 20px;       /* <-- das ist der einheitliche obere Rand */
  }
  
  h1, h2, h3 {
    margin-top: 0;       /* verhindert extra Abstand ganz oben */
  }
  