      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
	  	font-family: 'Gotham'; font-weight: 300; font-style: normal;
      }

      body {
        overflow-x: hidden;
      }
	  
	  h1, h2, h3, h4, h5, h6 {
  	  	font-family: 'Gotham'; font-weight: 300; font-style: normal;
		      font-weight: normal;
		      font-style: normal;
	  }

      /* Header Styling */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 5px 40px; /* Höherer Header */
        background-color: white;
        z-index: 1000;
        border-bottom: 4px solid #BE1414;
        box-shadow: 0 4px 0 #006432;
        transition: padding 0.3s ease;
      }

      header.scrolled {
        padding: 10px 40px; /* Kleinerer Header beim Scrollen */
      }

      header h1 {
        color: #333;
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      header .logo {
        height: 110px; /* Größeres Logo */
        transition: height 0.3s ease;
      }

      header.scrolled .logo {
        height: 80px; /* Kleineres Logo beim Scrollen */
      }

      /* Vollflächiger Slider (Bootstrap Carousel) */
      #heroCarousel {
        height: 100vh;
      }

      #heroCarousel .carousel-item img {
        height: 100vh;
        width: 100%;
        object-fit: cover;
      }

      /* Styling der Überschrift im Slider */
  	/* Styling der Überschrift im Slider für die fixed caption */
  	#heroCarousel .carousel-fixed-caption h2 {
      color: white;
  	  font-size: 3.5rem;
  	  margin-bottom: 10px;
  	  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  	  text-transform: uppercase;
  	  position: relative;
  	  display: inline-block;
  	  padding: 0 50px;
  	}

  	#heroCarousel .carousel-fixed-caption h2::before,
  	#heroCarousel .carousel-fixed-caption h2::after {
  	  content: "";
  	  position: absolute;
  	  top: 50%;
  	  height: 4px;
  	  background-color: #BE1414;
  	  width: calc(50vw - 50% - 30px);
  	}

  	#heroCarousel .carousel-fixed-caption h2::before {
  	  right: 100%;
  	}

  	#heroCarousel .carousel-fixed-caption h2::after {
  	  left: 100%;
  	}

  	/* Dauerhafte Caption für den Slider */
  	#heroCarousel {
  	  position: relative;
  	}

  	.carousel-overlay {
  	  position: absolute;
  	  top: 0;
  	  left: 0;
  	  width: 100%;
  	  height: 100%;
  	  background-color: rgba(0, 0, 0, 0.6); /* Schwarzes Overlay mit 40% Deckkraft */
  	  z-index: 1;
  	}

  	.carousel-fixed-caption {
  	  position: absolute;
  	  top: 50%;
  	  left: 50%;
  	  transform: translate(-50%, -50%);
  	  text-align: center;
  	  z-index: 10; /* Höher als das Overlay */
  	  width: 80%;
  	  max-width: 800px;
  	}

  	.carousel-fixed-caption p {
  	  font-size: 1.2rem;
  	  margin-bottom: 1.5rem;
  	  color: white;
  	  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  	}
    

      /* Contact Section */
  	/* Verbesserte Contact Section */
  	/* Verbesserte Contact Section mit 50/50 Aufteilung */
  	.contact {
  	  min-height: 100vh;
  	  display: flex;
  	  flex-direction: column;
  	}

  	.contact-content {
  	  flex: 1;
  	  display: flex;
  	  flex-wrap: wrap;
  	}

  	.contact-info {
  	  flex: 0 0 50%; /* Genau 50% der Breite */
  	  max-width: 50%;
  	  padding: 150px 50px 50px 50px;
  	  position: relative;
  	}

  	.contact-map {
  	  flex: 0 0 50%; /* Genau 50% der Breite */
  	  max-width: 50%;
  	  min-height: 100%;
  	  position: relative;
	  padding: 100px;
  	}

  	.contact-map::before {
  	  content: '';
  	  position: absolute;
  	  top: 0;
  	  left: 0;
  	  width: 100%;
  	  height: 4px;
  	  background: #BE1414;
  	}

  	.contact-map iframe {
  	  width: 100%;
  	  height: 100%;
  	  border: none;
  	  display: block; /* Entfernt mögliche Lücken */
  	}

  	/* Rest des Contact-Info Stylings bleibt gleich */
  	.contact-info::before {
  	  content: '';
  	  position: absolute;
  	  top: 0;
  	  left: 0;
  	  width: 100%;
  	  height: 4px;
  	  background: #BE1414;
  	}

  	.contact-info h3 {
  	  font-size: 2.2rem;
  	  font-weight: 700;
  	  margin-bottom: 30px;
  	  color: #1d3557;
  	  position: relative;
  	  padding-bottom: 15px;
  	  text-transform: uppercase;
  	  letter-spacing: 1px;
  	}

  	.contact-info h3::after {
  	  content: '';
  	  position: absolute;
  	  bottom: 0;
  	  left: 0;
  	  width: 80px;
  	  height: 3px;
  	  background-color: #BE1414;
  	}

  	.contact-info h4 {
  	  font-size: 1.4rem;
  	  font-weight: 600;
  	  margin: 30px 0 20px;
  	  color: #1d3557;
  	  text-transform: uppercase;
  	  letter-spacing: 0.5px;
  	}

  	.contact-info p {
  	  margin-bottom: 5px;
  	  line-height: 1.2;
  	  font-size: 1.1rem;
  	  color: #495057;
  	}

  	.contact-info .address-block,
  	.contact-info .hours-block,
  	.contact-info .contact-block {
  	  margin-bottom: 30px;
  	  position: relative;
  	  padding-left: 35px;
  	}

  	.contact-info .address-block::before,
  	.contact-info .hours-block::before,
  	.contact-info .contact-block::before {
  	  font-family: "Font Awesome 5 Free";
  	  font-weight: 900;
  	  position: absolute;
  	  left: 0;
  	  top: 0;
  	  font-size: 1.5rem;
  	  color: #BE1414;
  	}

  	.contact-info .address-block::before {
  	  content: "\f3c5"; /* map marker icon */
  	}

  	.contact-info .hours-block::before {
  	  content: "\f017"; /* clock icon */
  	}

  	.contact-info .contact-block::before {
  	  content: "\f095"; /* phone icon */
  	}

  	.contact-info .email {
  	  color: #BE1414;
  	  font-weight: 600;
  	  transition: all 0.3s ease;
  	  text-decoration: none;
  	}

  	.contact-info .email:hover {
  	  color: #1d3557;
  	  text-decoration: underline;
  	}

  	.contact-info .phone {
  	  font-weight: 600;
  	  color: #1d3557;
  	}

  	.day {
  	  font-weight: 600;
  	  display: inline-block;
  	  width: 150px;
  	}

  	/* Responsive Anpassungen */
  	@media (max-width: 992px) {
  	  .contact-info,
  	  .contact-map {
  	    flex: 0 0 100%;
  	    max-width: 100%;
  	  }
  
  	  .contact-map {
  	    min-height: 400px; /* Feste Höhe für die Karte auf mobilen Geräten */
  	  }
  
  	  .contact-info {
  	    padding: 120px 30px 40px 30px;
  	  }
  
  	  .contact-info h3 {
  	    font-size: 1.8rem;
  	  }
  	}
	
    

      /* Footer */
      footer {
        background-color: #333;
        color: white;
        padding: 20px;
        text-align: center;
      }

      footer p {
        margin-bottom: 10px;
      }
	
      .cta-button {
        display: inline-block;
        padding: 16px 32px;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: white;
        background-color: #BE1414; /* Modernes Rot */
        border: none;
        border-radius: 50px; /* Abgerundete Ecken für modernen Look */
        box-shadow: 0 6px 12px rgba(230, 57, 70, 0.3); /* Subtiler Schatten */
        transition: all 0.3s ease;
        text-decoration: none;
        margin-top: 20px;
      }
  
      .cta-button:hover {
        background-color: #BE1414; /* Dunkleres Rot beim Hover */
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
        color: white;
      }
  
      .cta-button:active {
        transform: translateY(-1px);
        box-shadow: 0 5px 10px rgba(230, 57, 70, 0.4);
      }
	  
	  /* Ken Burns Effekt für Slider */
	  .carousel-item {
	    overflow: hidden;
	  }

	  .carousel-item img {
	    animation-duration: 10s;
	    animation-timing-function: ease-in-out;
	    animation-fill-mode: forwards;
	  }

	  .carousel-item.active img {
	    animation-name: kenburns;
	  }

	  .carousel-item:nth-child(1) img {
	    animation-name: kenburns-top-right;
	  }

	  .carousel-item:nth-child(2) img {
	    animation-name: kenburns-top-left;
	  }

	  .carousel-item:nth-child(3) img {
	    animation-name: kenburns-center;
	  }

	  @keyframes kenburns-top-right {
	    0% {
	      transform: scale(1) translate(0, 0);
	      transform-origin: top right;
	    }
	    100% {
	      transform: scale(1.1) translate(-1%, 1%);
	      transform-origin: top right;
	    }
	  }

	  @keyframes kenburns-top-left {
	    0% {
	      transform: scale(1) translate(0, 0);
	      transform-origin: top left;
	    }
	    100% {
	      transform: scale(1.1) translate(1%, 1%);
	      transform-origin: top left;
	    }
	  }

	  @keyframes kenburns-center {
	    0% {
	      transform: scale(1);
	      transform-origin: center center;
	    }
	    100% {
	      transform: scale(1.1);
	      transform-origin: center center;
	    }
	  }
	  
	  /* Mobile und Tablet Anpassungen */
	  @media (max-width: 1200px) {
	    /* Header Anpassungen */
	    header {
	      padding: 5px 20px;
	    }
  
	    header.scrolled {
	      padding: 5px 20px;
	    }
  
	    header .logo {
	      height: 80px;
	    }
  
	    header.scrolled .logo {
	      height: 60px;
	    }
  
	    /* Carousel Anpassungen */
	    #heroCarousel .carousel-fixed-caption h2 {
	      font-size: 2.5rem;
	      padding: 0 30px;
	    }
  
	    #heroCarousel .carousel-fixed-caption h2::before,
	    #heroCarousel .carousel-fixed-caption h2::after {
	      width: calc(50vw - 50% - 20px);
	    }
  
	    .carousel-fixed-caption p {
	      font-size: 1.1rem;
	      padding: 0 20px;
	    }
  
	    /* Contact Section Anpassungen */
	    .contact-info {
	      padding: 120px 30px 40px 30px;
	    }
  
	    .contact-info h3 {
	      font-size: 2rem;
	    }
  
	    .contact-info h4 {
	      font-size: 1.3rem;
	    }
  
	    .day {
	      width: 120px;
	    }
	  }

	  @media (max-width: 992px) {
	    /* Header Anpassungen */
	    header {
	      padding: 5px 15px;
	    }
  
	    header .logo {
	      height: 70px;
	    }
  
	    /* Carousel Anpassungen */
	    #heroCarousel .carousel-fixed-caption h2 {
	      font-size: 2.2rem;
	      padding: 0 20px;
	    }
  
	    #heroCarousel .carousel-fixed-caption h2::before,
	    #heroCarousel .carousel-fixed-caption h2::after {
	      width: calc(50vw - 50% - 15px);
	      height: 3px;
	    }
  
	    .carousel-fixed-caption {
	      width: 90%;
	    }
  
	    /* Contact Section Anpassungen */
	    .contact-content {
	      flex-direction: column;
	    }
  
	    .contact-info,
	    .contact-map {
	      flex: 0 0 100%;
	      max-width: 100%;
	    }
  
	    .contact-map {
	      min-height: 400px;
	      padding: 30px;
	    }
		
		.contact-map iframe {
		  height: 500px;
		}
  
	    .contact-info {
	      padding: 100px 25px 40px 25px;
	      box-shadow: none;
	    }
	  }

	  @media (max-width: 768px) {
	    /* Header Anpassungen */
	    header .logo {
	      height: 60px;
	    }
  
	    header.scrolled .logo {
	      height: 50px;
	    }
  
	    /* Carousel Anpassungen */
	    #heroCarousel .carousel-fixed-caption h2 {
	      font-size: 1.8rem;
	      padding: 0 15px;
	    }
  
	    #heroCarousel .carousel-fixed-caption h2::before,
	    #heroCarousel .carousel-fixed-caption h2::after {
	      width: calc(50vw - 50% - 10px);
	      height: 2px;
	    }
  
	    .carousel-fixed-caption p {
	      font-size: 1rem;
	      margin-bottom: 1rem;
	    }
  
	    .cta-button {
	      padding: 12px 24px;
	      font-size: 1rem;
	    }
  
	    /* Contact Section Anpassungen */
	    .contact-info h3 {
	      font-size: 1.8rem;
	      margin-bottom: 20px;
	    }
  
	    .contact-info h4 {
	      font-size: 1.2rem;
	      margin: 20px 0 15px;
	    }
  
	    .contact-info p {
	      font-size: 1rem;
	    }
  
	    .contact-info .address-block,
	    .contact-info .hours-block,
	    .contact-info .contact-block {
	      padding-left: 30px;
	      margin-bottom: 20px;
	    }
  
	    .contact-info .address-block::before,
	    .contact-info .hours-block::before,
	    .contact-info .contact-block::before {
	      font-size: 1.3rem;
	    }
  
	    .day {
	      width: 100px;
	      font-size: 0.95rem;
	    }
  
	    .contact-map {
	      min-height: 550px;
	      padding: 20px;
	    }
	  }

	  @media (max-width: 576px) {
	    /* Header Anpassungen */
	    header {
	      padding: 5px 10px;
	    }
  
	    header .logo {
	      height: 50px;
	    }
  
	    header.scrolled .logo {
	      height: 40px;
	    }
  
	    /* Carousel Anpassungen */
	    #heroCarousel .carousel-fixed-caption h2 {
	      font-size: 1.5rem;
	      padding: 0 10px;
	    }
  
	    #heroCarousel .carousel-fixed-caption h2::before,
	    #heroCarousel .carousel-fixed-caption h2::after {
	      display: none; /* Entferne die Linien bei sehr kleinen Bildschirmen */
	    }
  
	    .carousel-fixed-caption {
	      width: 95%;
	    }
  
	    .cta-button {
	      padding: 10px 20px;
	      font-size: 0.9rem;
	    }
  
	    /* Contact Section Anpassungen */
	    .contact-info {
	      padding: 80px 15px 30px 15px;
	    }
  
	    .contact-info h3 {
	      font-size: 1.6rem;
	    }
  
	    .contact-info h4 {
	      font-size: 1.1rem;
	    }
  
	    .contact-info p {
	      font-size: 0.95rem;
	    }
  
	    .day {
	      width: 90px;
	      font-size: 0.9rem;
	    }
  
	    .contact-map {
	      min-height: 300px;
	      padding: 15px;
	    }
  
	    footer {
	      padding: 15px;
	      font-size: 0.9rem;
	    }
	  }

	  /* Verbesserte Darstellung für Landscape-Modus auf Mobilgeräten */
	  @media (max-height: 500px) and (orientation: landscape) {
	    #heroCarousel {
	      height: 120vh; /* Etwas höher für bessere Darstellung im Landscape-Modus */
	    }
  
	    #heroCarousel .carousel-item img {
	      height: 120vh;
	    }
  
	    .carousel-fixed-caption {
	      top: 60%;
	    }
  
	    #heroCarousel .carousel-fixed-caption h2 {
	      font-size: 1.5rem;
	    }
  
	    .cta-button {
	      margin-top: 10px;
	    }
	  }
	  
