  body {
      font-family: 'Segoe UI', sans-serif;
      background: #f4f4f4;
      margin: 0;
      padding: 20px;
      color: #333;
      line-height: 1.6;
      font-size: 1.3rem;
      
    }

    

    .container {
      max-width: 800px;
      margin: auto;
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    h1, h2 {
      color: #2c3e50;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    h2 {
      margin-top: 30px;
      font-size: 1.4rem;
      color: #2980b9;
    }

    .highlight {
      font-weight: bold;
      color: #e74c3c;
    }

    .section {
      margin-bottom: 20px;
    }

    .workshop {
      background: #ecf0f1;
      padding: 10px 15px;
      border-left: 5px solid #2980b9;
      margin: 10px 0;
      border-radius: 5px;
    }

    .contact {
      background: #dff9fb;
      padding: 15px;
      border-left: 5px solid #27ae60;
      margin-top: 30px;
      border-radius: 5px;
    }

    a {
      color: #2980b9;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }


    .proben {
      display: flex;
      flex-direction: column;
      text-align: center;
    }


        .header-gallery {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .header-gallery img {
      width: 100%;
      max-width: 100%;
      height: 250px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .forderlogos {

  margin-top: 50px;
  margin-bottom: 50px;;
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* sorgt dafür, dass die Logos oben ausgerichtet sind */
  gap: 1rem; /* optional: Abstand zwischen Logos */
}

.forderlogos img {
  width: 33%;
  height: auto;
  object-fit: contain; /* behält das Seitenverhältnis bei */
  max-height: 200px; /* optional: verhindert extreme Höhen */
}

    @media (min-width: 768px) {
      .header-gallery img {
        width: 33.33%;
      }

    }
    @media (max-width: 768px) {

      .forderlogos { 
        flex-direction: column;
      }
      .forderlogos img {
        width: 100%;
      }
    }

