body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    background: #f5f5f5;
  }
  
 .banner-wrapper {
  background: linear-gradient(to right, #2c2c2c, #1f1f1f);
  position: relative; /* für das Pseudo-Element */
}

.banner-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    to right,
    #e4b10a 0%,
    #ffdc3e 50%,
    #e4b10a 100%
  );
  pointer-events: none;
}


.banner-container {
  max-width: 1300px;     /* Begrenzung des Inhalts */
  margin: 0 auto;         /* Zentrierung */
  padding: 0 10px;        /* Sicherheitsabstand auf kleinen Geräten */
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}



  /*header {
    height: 40vh;
    width: 100%;
    background: #333 url('Header.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    text-align: center;
  }*/
  
  .content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .content-block.reverse {
    flex-direction: row-reverse;
  }
  
  .text {
    flex: 1;
    padding: 20px;
  }
  
  .image {
    flex: 1;
    padding: 20px;
  }
  
  .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 30px 10px;
  }

  .site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 10px;
  position: relative; /* Wichtig für ::before */
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    to right,
    #e4b10a 0%,
    #ffdc3e 50%,
    #e4b10a 100%
  );
  pointer-events: none;
}

  
  h2 {
    color: #333;
    margin-top: 0;
  }
  
  p {
    color: #555;
    line-height: 1.6;
  }
  
  a {
    color: #ccc;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .content-block {
      flex-direction: column;
    }
    .content-block.reverse {
      flex-direction: column;
    }
  }
  
