/* === Allgemeine Contentbereiche === */
main {
    padding: 0px 0px;
  }
  
  /* === Hero-Bild oben === */
  .hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 800px;
  }
  
  /* === Inhaltssektionen mit Bild und Text === */
  .content-section {
    padding: 60px 0;
  }
  
  .text-image-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .text-block {
    flex: 1;
    min-width: 280px;
    color: #ccc;
  }
  
  .text-block h2 {
    color: #eee;
    margin-bottom: 20px;
  }
  
  .text-block p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Bild auf der rechten Seite */
  .image-block {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  
  /* Umgekehrte Reihenfolge */
  .reverse {
    flex-direction: row-reverse;
  }
  
  /* === Responsive Design === */
  @media (max-width: 768px) {
    .text-image-container {
      flex-direction: column;
      text-align: center;
    }
  
    .reverse {
      flex-direction: column;
    }
  
    .text-block, .image-block {
      text-align: center;
    }
  
    .text-block h2 {
      margin-top: 30px;
    }
  }
  