/* Stil f&uuml;r die rote Linie */
 .rote-linie {
      width: 100%;
      max-width: 900px;
  height: 15px;
  background-color: #e30613;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

 .top-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.top-nav .hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #e30613; /* ROT */;
  z-index: 1002;
  position: relative;
}

.top-nav #nav-toggle {
  display: none;
}

.top-nav .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  max-width: 80vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 1.5rem 2rem 1.5rem; /* oben mehr Abstand */
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.top-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
}

.top-nav #nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    {
    margin: 0; /* Entfernt standardm&auml;&szlig;igen Abstand um den Body */
    font-family: Arial, sans-serif; /* Definiert eine Grundschriftart */
}

.text-container {
    max-width: 1200px; /* Maximalbreite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    padding: 0 15%; /* Padding links und rechts von 15% */
    box-sizing: border-box; /* Ber&uuml;cksichtigt Padding bei der Breitenberechnung */
}

p {
    margin: 0; /* Entfernt den Standardabstand um Abs&auml;tze */
    font-size: 1.2em; /* Setzt eine Schriftgr&ouml;&szlig;e */
    line-height: 1.5; /* Zeilenh&ouml;he f&uuml;r bessere Lesbarkeit */
}

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    header img {
      max-width: 600px;
      height: auto;
    }

    .red-bar {
      height: 40px;
      background-color: #e30613;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
       margin-bottom: 0.5rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

    /* styles.css */
#scrollToTopBtn {
    position: fixed; /* Fixiere den Button */
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    background-color: red; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px 15px; /* Innerer Abstand */
    cursor: pointer; /* Zeiger wird zur Hand bei Hover */
    font-size: 16px; /* Schriftgr&ouml;&szlig;e */
    display: none; /* Anfangs versteckt */
}

#scrollToTopBtn:hover {
    background-color: #e30613; /* Dunklere Farbe bei Hover */
}


    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .info {
      text-align: center;
      padding: 2rem 1rem;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1rem;
      background: #f0f0f0;
      margin-top: auto;
    }

    footer a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 0.9rem;
      z-index: 1000;
      flex-wrap: wrap;
      text-align: center;
    }

    #cookie-banner button {
      background: #00aaff;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      margin-left: 1rem;
      margin-top: 0.5rem;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .slider img {
        width: 100vw;
      }

      #cookie-banner {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      #cookie-banner button {
        margin: 1rem 0 0 0;
      }
    }

    .contact-form {
      max-width: 600px;
      margin: 2rem auto;
      padding: 1rem;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      margin-top: 0;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.2rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .contact-form button {
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background-color: #0056b3;
    }
  

  /* Stil f&uuml;r die rote Linie */
 .rote-linie {
      width: 100%;
      max-width: 900px;
  height: 15px;
  background-color: #e30613;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

 .top-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.top-nav .hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #e30613; /* ROT */
  z-index: 1002;
  position: relative;
}

.top-nav #nav-toggle {
  display: none;
}

.top-nav .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  max-width: 80vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 1.5rem 2rem 1.5rem; /* oben mehr Abstand */
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.top-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
}

.top-nav #nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    {
    margin: 0; /* Entfernt standardm&auml;&szlig;igen Abstand um den Body */
    font-family: Arial, sans-serif; /* Definiert eine Grundschriftart */
}

.text-container {
    max-width: 1200px; /* Maximalbreite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    padding: 0 15%; /* Padding links und rechts von 15% */
    box-sizing: border-box; /* Ber&uuml;cksichtigt Padding bei der Breitenberechnung */
}

p {
    margin: 0; /* Entfernt den Standardabstand um Abs&auml;tze */
    font-size: 1.2em; /* Setzt eine Schriftgr&ouml;&szlig;e */
    line-height: 1.5; /* Zeilenh&ouml;he f&uuml;r bessere Lesbarkeit */
}

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    header img {
      max-width: 600px;
      height: auto;
    }

    .red-bar {
      height: 40px;
      background-color: #e30613;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
       margin-bottom: 0.5rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

        /* styles.css */
#scrollToTopBtn {
    position: fixed; /* Fixiere den Button */
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    background-color: red; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px 15px; /* Innerer Abstand */
    cursor: pointer; /* Zeiger wird zur Hand bei Hover */
    font-size: 16px; /* Schriftgr&ouml;&szlig;e */
    display: none; /* Anfangs versteckt */
}

#scrollToTopBtn:hover {
    background-color: #e30613; /* Dunklere Farbe bei Hover */
}


    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .info {
      text-align: center;
      padding: 2rem 1rem;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1rem;
      background: #f0f0f0;
      margin-top: auto;
    }

    footer a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 0.9rem;
      z-index: 1000;
      flex-wrap: wrap;
      text-align: center;
    }

    #cookie-banner button {
      background: #00aaff;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      margin-left: 1rem;
      margin-top: 0.5rem;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .slider img {
        width: 100vw;
      }

      #cookie-banner {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      #cookie-banner button {
        margin: 1rem 0 0 0;
      }
    }

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact-form h3 {
  margin-top: 0;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #0056b3;
}
.text-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 1rem;
  text-align: center;
  font-family: sans-serif;
}

  

  /* Stil f&uuml;r die rote Linie */
 .rote-linie {
      width: 100%;
      max-width: 900px;
  height: 15px;
  background-color: #e30613;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

 .top-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.top-nav .hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #e30613; /* ROT */;
  z-index: 1002;
  position: relative;
}

.top-nav #nav-toggle {
  display: none;
}

.top-nav .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  max-width: 80vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 1.5rem 2rem 1.5rem; /* oben mehr Abstand */
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.top-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
}

.top-nav #nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    {
    margin: 0; /* Entfernt standardm&auml;&szlig;igen Abstand um den Body */
    font-family: Arial, sans-serif; /* Definiert eine Grundschriftart */
}

.text-container {
    max-width: 1200px; /* Maximalbreite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    padding: 0 15%; /* Padding links und rechts von 15% */
    box-sizing: border-box; /* Ber&uuml;cksichtigt Padding bei der Breitenberechnung */
}

p {
    margin: 0; /* Entfernt den Standardabstand um Abs&auml;tze */
    font-size: 1.2em; /* Setzt eine Schriftgr&ouml;&szlig;e */
    line-height: 1.5; /* Zeilenh&ouml;he f&uuml;r bessere Lesbarkeit */
}

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    header img {
      max-width: 600px;
      height: auto;
    }

    .red-bar {
      height: 40px;
      background-color: #e30613;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
       margin-bottom: 0.5rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

    /* styles.css */
#scrollToTopBtn {
    position: fixed; /* Fixiere den Button */
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    background-color: red; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px 15px; /* Innerer Abstand */
    cursor: pointer; /* Zeiger wird zur Hand bei Hover */
    font-size: 16px; /* Schriftgr&ouml;&szlig;e */
    display: none; /* Anfangs versteckt */
}

#scrollToTopBtn:hover {
    background-color: #e30613; /* Dunklere Farbe bei Hover */
}



    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .info {
      text-align: center;
      padding: 2rem 1rem;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1rem;
      background: #f0f0f0;
      margin-top: auto;
    }

    footer a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 0.9rem;
      z-index: 1000;
      flex-wrap: wrap;
      text-align: center;
    }

    #cookie-banner button {
      background: #00aaff;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      margin-left: 1rem;
      margin-top: 0.5rem;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .slider img {
        width: 100vw;
      }

      #cookie-banner {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      #cookie-banner button {
        margin: 1rem 0 0 0;
      }
    }

    .contact-form {
      max-width: 600px;
      margin: 2rem auto;
      padding: 1rem;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      margin-top: 0;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.2rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .contact-form button {
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background-color: #0056b3;
    }
  

  /* Stil f&uuml;r die rote Linie */
 .rote-linie {
      width: 100%;
      max-width: 900px;
  height: 15px;
  background-color: #e30613;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

 .top-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.top-nav .hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #e30613; /* ROT */;
  z-index: 1002;
  position: relative;
}

.top-nav #nav-toggle {
  display: none;
}

.top-nav .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  max-width: 80vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 1.5rem 2rem 1.5rem; /* oben mehr Abstand */
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.top-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
}

.top-nav #nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    {
    margin: 0; /* Entfernt standardm&auml;&szlig;igen Abstand um den Body */
    font-family: Arial, sans-serif; /* Definiert eine Grundschriftart */
}

.text-container {
    max-width: 1200px; /* Maximalbreite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    padding: 0 15%; /* Padding links und rechts von 15% */
    box-sizing: border-box; /* Ber&uuml;cksichtigt Padding bei der Breitenberechnung */
}

p {
    margin: 0; /* Entfernt den Standardabstand um Abs&auml;tze */
    font-size: 1.2em; /* Setzt eine Schriftgr&ouml;&szlig;e */
    line-height: 1.5; /* Zeilenh&ouml;he f&uuml;r bessere Lesbarkeit */
}

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    header img {
      max-width: 600px;
      height: auto;
    }

    .red-bar {
      height: 40px;
      background-color: #e30613;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
       margin-bottom: 0.5rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

        /* styles.css */
#scrollToTopBtn {
    position: fixed; /* Fixiere den Button */
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    background-color: red; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px 15px; /* Innerer Abstand */
    cursor: pointer; /* Zeiger wird zur Hand bei Hover */
    font-size: 16px; /* Schriftgr&ouml;&szlig;e */
    display: none; /* Anfangs versteckt */
}

#scrollToTopBtn:hover {
    background-color: #e30613; /* Dunklere Farbe bei Hover */
}


    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .info {
      text-align: center;
      padding: 2rem 1rem;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1rem;
      background: #f0f0f0;
      margin-top: auto;
    }

    footer a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 0.9rem;
      z-index: 1000;
      flex-wrap: wrap;
      text-align: center;
    }

    #cookie-banner button {
      background: #00aaff;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      margin-left: 1rem;
      margin-top: 0.5rem;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .slider img {
        width: 100vw;
      }

      #cookie-banner {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      #cookie-banner button {
        margin: 1rem 0 0 0;
      }
    }

    .contact-form {
      max-width: 600px;
      margin: 2rem auto;
      padding: 1rem;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      margin-top: 0;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.2rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .contact-form button {
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background-color: #0056b3;
    }
  

  /* Stil f&uuml;r die rote Linie */
 .rote-linie {
      width: 100%;
      max-width: 900px;
  height: 15px;
  background-color: #e30613;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

 .top-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.top-nav .hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #e30613; /* ROT */
  z-index: 1002;
  position: relative;
}

.top-nav #nav-toggle {
  display: none;
}

.top-nav .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  max-width: 80vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 1.5rem 2rem 1.5rem; /* oben mehr Abstand */
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.top-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
}

.top-nav #nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    header img {
      max-width: 600px;
      height: auto;
    }



    .red-bar {
      height: 40px;
      background-color: #e30613;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
       margin-bottom: 0.5rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .info {
      text-align: center;
      padding: 2rem 1rem;
    }

    /* styles.css */
#scrollToTopBtn {
    position: fixed; /* Fixiere den Button */
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    background-color: red; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px 15px; /* Innerer Abstand */
    cursor: pointer; /* Zeiger wird zur Hand bei Hover */
    font-size: 16px; /* Schriftgr&ouml;&szlig;e */
    display: none; /* Anfangs versteckt */
}

#scrollToTopBtn:hover {
    background-color: #e30613; /* Dunklere Farbe bei Hover */
}


    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1rem;
      background: #f0f0f0;
      margin-top: auto;
    }

    footer a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 0.9rem;
      z-index: 1000;
      flex-wrap: wrap;
      text-align: center;
    }

    #cookie-banner button {
      background: #00aaff;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      margin-left: 1rem;
      margin-top: 0.5rem;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .slider img {
        width: 100vw;
      }

      #cookie-banner {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      #cookie-banner button {
        margin: 1rem 0 0 0;
      }
    }

    .contact-form {
      max-width: 600px;
      margin: 2rem auto;
      padding: 1rem;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      margin-top: 0;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.2rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .contact-form button {
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background-color: #0056b3;
    }
  

  /* Stil f&uuml;r die rote Linie */
 .rote-linie {
      width: 100%;
      max-width: 900px;
  height: 15px;
  background-color: #e30613;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

 .top-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.top-nav .hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #e30613; /* ROT */;
  z-index: 1002;
  position: relative;
}

.top-nav #nav-toggle {
  display: none;
}

.top-nav .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  max-width: 80vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 1.5rem 2rem 1.5rem; /* oben mehr Abstand */
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.top-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
}

.top-nav #nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    {
    margin: 0; /* Entfernt standardm&auml;&szlig;igen Abstand um den Body */
    font-family: Arial, sans-serif; /* Definiert eine Grundschriftart */
}

.text-container {
    max-width: 1200px; /* Maximalbreite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    padding: 0 15%; /* Padding links und rechts von 15% */
    box-sizing: border-box; /* Ber&uuml;cksichtigt Padding bei der Breitenberechnung */
}

p {
    margin: 0; /* Entfernt den Standardabstand um Abs&auml;tze */
    font-size: 1.2em; /* Setzt eine Schriftgr&ouml;&szlig;e */
    line-height: 1.5; /* Zeilenh&ouml;he f&uuml;r bessere Lesbarkeit */
}

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    header img {
      max-width: 600px;
      height: auto;
    }

    .red-bar {
      height: 40px;
      background-color: #e30613;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
       margin-bottom: 0.5rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

        /* styles.css */
#scrollToTopBtn {
    position: fixed; /* Fixiere den Button */
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    background-color: red; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px 15px; /* Innerer Abstand */
    cursor: pointer; /* Zeiger wird zur Hand bei Hover */
    font-size: 16px; /* Schriftgr&ouml;&szlig;e */
    display: none; /* Anfangs versteckt */
}

#scrollToTopBtn:hover {
    background-color: #e30613; /* Dunklere Farbe bei Hover */
}


    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .info {
      text-align: center;
      padding: 2rem 1rem;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1rem;
      background: #f0f0f0;
      margin-top: auto;
    }

    footer a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 0.9rem;
      z-index: 1000;
      flex-wrap: wrap;
      text-align: center;
    }

    #cookie-banner button {
      background: #00aaff;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      margin-left: 1rem;
      margin-top: 0.5rem;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .slider img {
        width: 100vw;
      }

      #cookie-banner {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      #cookie-banner button {
        margin: 1rem 0 0 0;
      }
    }

    .contact-form {
      max-width: 600px;
      margin: 2rem auto;
      padding: 1rem;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      margin-top: 0;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.2rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .contact-form button {
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background-color: #0056b3;
    }
  

  /* Stil f&uuml;r die rote Linie */
 .rote-linie {
      width: 100%;
      max-width: 900px;
  height: 15px;
  background-color: #e30613;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

 .top-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.top-nav .hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #e30613; /* ROT */
  z-index: 1002;
  position: relative;
}

.top-nav #nav-toggle {
  display: none;
}

.top-nav .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  max-width: 80vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 1.5rem 2rem 1.5rem; /* oben mehr Abstand */
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.top-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  width: 100%;
}

.top-nav #nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    {
    margin: 0; /* Entfernt standardm&auml;&szlig;igen Abstand um den Body */
    font-family: Arial, sans-serif; /* Definiert eine Grundschriftart */
}

.text-container {
    max-width: 1200px; /* Maximalbreite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    padding: 0 15%; /* Padding links und rechts von 15% */
    box-sizing: border-box; /* Ber&uuml;cksichtigt Padding bei der Breitenberechnung */
}

p {
    margin: 0; /* Entfernt den Standardabstand um Abs&auml;tze */
    font-size: 1.2em; /* Setzt eine Schriftgr&ouml;&szlig;e */
    line-height: 1.5; /* Zeilenh&ouml;he f&uuml;r bessere Lesbarkeit */
}

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
    }

    header img {
      max-width: 600px;
      height: auto;
    }

    .red-bar {
      height: 40px;
      background-color: #e30613;
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
       margin-bottom: 0.5rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

        /* styles.css */
#scrollToTopBtn {
    position: fixed; /* Fixiere den Button */
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    background-color: red; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px 15px; /* Innerer Abstand */
    cursor: pointer; /* Zeiger wird zur Hand bei Hover */
    font-size: 16px; /* Schriftgr&ouml;&szlig;e */
    display: none; /* Anfangs versteckt */
}

#scrollToTopBtn:hover {
    background-color: #e30613; /* Dunklere Farbe bei Hover */
}


    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .info {
      text-align: center;
      padding: 2rem 1rem;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      padding: 1rem;
      background: #f0f0f0;
      margin-top: auto;
    }

    footer a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 0.9rem;
      z-index: 1000;
      flex-wrap: wrap;
      text-align: center;
    }

    #cookie-banner button {
      background: #00aaff;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      margin-left: 1rem;
      margin-top: 0.5rem;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .slider img {
        width: 100vw;
      }

      #cookie-banner {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      #cookie-banner button {
        margin: 1rem 0 0 0;
      }
    }

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact-form h3 {
  margin-top: 0;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #0056b3;
}
.text-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 1rem;
  text-align: left;
  font-family: sans-serif;
}

/* Responsive Grid & Flexbox Ergänzungen */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Mobilfreundliche Navigation und Layout */
@media (max-width: 768px) {
    .top-nav, nav, header, footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-nav a, nav a {
        padding: 0.5rem 0;
    }

    .rote-linie {
        height: 10px;
    }
}