@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
nav {
  
  position: fixed;
  z-index: 99;
  width: 100%;
  background:rgba(36,37,38,0.6); /* leicht transparent */
  
}
nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin-left: auto;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo-Styling */
.logo {
  display: flex;
  margin-top: 30px;
    align-items: center;
    height: 60px; /* Höhe der Navbar anpassen */
    padding: 5px 15px; /* Abstand zum Rand */
}

.logo-img {
  max-height: 65px; /* Reduziert die Höhe, damit es in die Navbar passt */
    width: auto; /* Damit das Seitenverhältnis erhalten bleibt */
    object-fit: contain; /* Verhindert Verzerrungen */
    position: fixed;
    top: 2px;
    left: 10px;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 35px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover {
  background: #3A3B3C;
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
    
    position: absolute;
    background: #242526;
    min-width: 180px;
    padding: 10px 0; /* Mehr Platz für die Dropdown-Elemente */
    border-bottom: 8px; /* Abgerundete Ecken für Eleganz */
    border-top: 0px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Startet leicht nach unten versetzt */
    transition: all 0.3s ease-in-out; /* Weiche Übergänge bei Hover */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Weicher Schatten */
    z-index: 99; /* Sicherstellen, dass es über anderen Inhalten liegt */
  }
  .nav-links li:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Zurück zur Ausgangsposition bei Hover */
    transition: all 0.3s ease-in-out;
  }
  
  .drop-menu li {
    margin: 5px 0; /* Vertikaler Abstand zwischen den Dropdown-Elementen */
    padding: 0 15px; /* Innenabstand für besseren Abstand */
  }
  
  .drop-menu li a {
    width: 100%;
    display: block;
    color: #f2f2f2;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    border-radius: 5px; /* Abgerundete Ecken für die Links */
    padding: 8px 15px; /* Gleichmäßige Abstände innerhalb der Links */
    transition: background 0.3s ease, transform 0.3s ease; /* Weicher Hover-Effekt */
  }
  
  .drop-menu li a:hover {
    background: #0070e0; /* Kontrast bei Hover */
    transform: scale(1.05); /* Leichtes Vergrößern für Interaktivität */
    color: #ffffff; /* Helle Schriftfarbe für besseren Kontrast */
  }
  

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}


.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 1306px) {
  .wrapper .btn {
    display: block;
    
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    
  }
  /* Custom Scrollbar */
  /*::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  } */
  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu {
    display: none !important
  }



  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    
  }
  .nav-links .mobile-item:hover {
    background: #3A3B3C;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
    
  }
 
  
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  
  
  .content .row header {
    font-size: 19px;
  }
}
nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div {
  font-size: 45px;
  font-weight: 600;
}


/* Allgemeine Stile */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  color: #333;
  margin-bottom: 15px;
   
}


p {
  color: #666;
  margin-bottom: 15px;
}

p2 {
  color: #ffffff;
  margin-bottom: 15px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
 /* padding: 0 0; */
}

/* Hero-Bereich */
.hero {
  
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  object-fit: cover; /*Bild füllt den gesamten Bereich */
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta {
  background-color: #FD3A37; /* Sekundärfarbe */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  opacity: 1;
  z-index: 1;
  
}

.cta:hover {
  background-color: #FF6B68; /* Hellere Sekundärfarbe für Hover */
  
}

/* Dienstleistungen */
.services, .about, .contact, .footer, .trust, .usps {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Dezenter Hintergrund für einen professionellen Look */
  text-align: center; /* Text zentrieren */
  border-radius: 10px; /* Leicht abgerundete Ecken für eine modernere Optik */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Sanfter Schatten für Tiefe */
}

.service-item, .usp-item, .trust-item {
  margin-bottom: 30px; /* Größere Abstände für eine saubere Trennung */
  padding: 20px 15px; /* Innenabstand für mehr Lesbarkeit */
  background: #fff; /* Weißer Hintergrund für jeden Dienstleistungsblock */
  border-radius: 10px; /* Abgerundete Kanten für die Blöcke */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Sanfter Schatten für die Blöcke */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Interaktive Animation */
}

.service-item:hover, .usp-item:hover, .trust-item:hover {
  transform: translateY(-5px); /* Leichtes Anheben beim Hover */
  box-shadow: 0 4px 15px #FF6B68; /* Stärkerer Schatten beim Hover */
}

.service-item h3, .usp-item h3, .trust-item h3 {
  width: 100%;
  margin-bottom: 15px;
  color: #516BF5; /* Primärfarbe */
  display: flex; /* Stellt sicher, dass der Text richtig umbrechen kann */
  flex-wrap: wrap; /* Falls nötig, damit lange Wörter umbrechen */
  align-items: center;
  justify-content: center; /* Zentriert den Text und das Icon */
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center; /* Falls nötig für zentrierten Text */
  max-width: 100%; /* Verhindert Überlauf */
  word-wrap: break-word; /* Falls lange Wörter vorhanden sind */
  overflow-wrap: break-word;
  
}


.service-item h3 i, .usp-item h3 i, .trust-item h3 i {
  color: #516BF5; /* Primärfarbe für Icons */
  margin-right: 10px; /* Abstand zwischen Icon und Text */
  font-size: 1.4rem; /* Größere Icons für besseren Fokus */
  
}

.service-item p, .usp-item p, .trust-item p {
  margin: 0 auto; /* Zentriert den Absatz */
  padding: 10px 0; /* Vertikale Abstände hinzufügen */
  max-width: 700px; /* Breitere Texte für größere Bildschirme */
  color: #666; /* Dezenter Textfarbton */
  font-size: 1rem; /* Gut lesbare Schriftgröße */
  line-height: 1.6; /* Angenehme Lesbarkeit */
}



.service-item:hover p, .usp-item:hover p, .trust-item:hover p {
  color: #333; /* Dunklere Farbe für besseren Kontrast beim Hover */
}

.service-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  color: #444;
  font-size: 0.95rem;
  padding: 0 10px;
  margin-top: 10px;
}

.service-item:hover .service-more {
  max-height: 200px; /* ausreichend Platz für mehrere Zeilen */
  opacity: 1;
}

/* Karussel */

.carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-images img {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.carousel-images img.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.3);
  color: white;
  border: none;
  font-size: 24px;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 2;
  
}

.carousel-btn.left {
  left: 5px;
}

.carousel-btn.right {
  right: 5px;
}

.carousel-btn:hover {
  background-color: rgba(0,0,0,0.5);
}




/* Kontaktformular Startseite */
form label {
  display: block;
  margin-bottom: 5px;
  
}

/* Footer */
.footer {
  background-color: #D8D8D8; /* Akzentfarbe */
  text-align: center;
  padding: 20px 0;
}

.footer p {
  margin: 10px 0;
  color: #333;
}

.footer a {
  text-decoration: none;
  color: #516BF5; /* Primärfarbe */
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
  color: #FD3A37; /* Sekundärfarbe */
}

/* Karten (z. B. Google Maps) */
iframe {
  width: 100%;
  border: none;
  border-radius: 5px;
  border: 1px solid #D8D8D8; /* Akzentfarbe */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  form input, form textarea, form button {
    font-size: 1rem;
  }
}

.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #516BF5;
  box-shadow: 0 0 0 3px rgba(81, 107, 245, 0.1);
  outline: none;
}

.contact-form button {
  background-color: #516BF5;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #3b51d9;
  transform: translateY(-2px);
}

.contact-info {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

.contact-info p {
  margin-bottom: 8px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Ende Kontaktformular auf Startseite */

/* Standorte auf Startseite */
.locations {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.locations-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Umbruch für kleinere Bildschirme */
}

/* Standort-Items */
.location-item {
  flex: 1 1 calc(50% - 20px); /* Zwei Standorte nebeneinander */
  max-width: calc(50% - 20px);
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.location-item:hover {
  transform: scale(1.05); /* Leichtes Vergrößern beim Hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Stärkerer Schatten beim Hover */
}

.location-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Halbtransparenter schwarzer Hintergrund */
  color: #fff;
  text-align: left;
  transform: translateY(100%); /* Startet außerhalb der Ansicht */
  transition: transform 0.3s ease; /* Animiert die Bewegung */
}

.location-item:hover .location-content {
  transform: translateY(0); /* Verschiebt den Text nach oben */
}

.location-content h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.location-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsives Design für Handy-Ansicht */
@media (max-width: 768px) {
  .location-item {
    flex: 1 1 100%; /* Jeder Standort nimmt die gesamte Breite ein */
    max-width: 100%;
    height: 250px;
  }

  .location-content {
    position: relative; /* Statische Position für die Texte */
    bottom: unset; /* Entfernt die Position am unteren Rand */
    transform: none; /* Kein Verschieben oder Animation */
    background: rgba(0, 0, 0, 0.6); 
    color: #ffffff; /* Text in heller Farbe für Lesbarkeit */
    padding: 20px; /* Angenehmer Abstand um den Text */
    text-align: left; /* Linksbündig für den Text */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Optionaler Schatten */
  }

  .location-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .location-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Entferne Hover-Effekte für Handy */
  .location-item:hover {
    transform: none; /* Kein Vergrößern bei Hover */
    box-shadow: none; /* Kein zusätzlicher Schatten */
  }

  .location-item:hover .location-content {
    transform: none; /* Kein Text-Einblenden */
  }
}

/* ENDE Standorte auf Startseite */

/* Anfang Standort SEITE */

.standortbereich {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9f9f9;
  border-radius: 15px;
  margin: 40px 0;
  padding: 40px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  gap: 30px;
  
}

.standort-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.standort-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.standort-text {
  flex: 1;
  text-align: justify;
  color: #333;
}

.standort-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.dots {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 30px;
  margin-top: 30px;
  width: 300px;
  height: 300px;
  background-image: url("dots.svg");
  background-size: contain;
  background-repeat: no-repeat;
  
  
  
  z-index: 0;}


@media (max-width: 768px) {
  .standortbereich {
    flex-direction: column;
    text-align: center;
  }

  .standort-text {
    text-align: center;
  }
}



/* Ende Standort SEITE */

/* Stil für ÜBER UNS */
.uberunsbereich {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #f9f9f9;
  border-radius: 15px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  
}

.uberuns-content {
  display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      height: 100%;
      
}

.uberuns-text {
  flex: 1;
  color: #333;
  text-align: justify;
  position: center;
  margin-left: 30px;
  margin-right: 30px;
  
}

.uberuns-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
  
}



.uberuns-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}

.uberuns-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  
}

/* Stil für dekorative Punkte als Hintergrundbild */
.uberunsbereich::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 10px;
  right: 10px;
  opacity: 0.6;
  z-index: -1;
}

/* Medienabfragen für mobile Darstellung */
@media (max-width: 768px) {
  .uberuns-content {
      flex-direction: column;
      text-align: center;
  }
  .uberuns-text {
      text-align: center;
  }
  .uberunsbereich::before {
      width: 80px;
      height: 80px;
      top: 5px;
      right: 5px;
  }
}

.dots {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 30px;
  margin-top: 30px;
  width: 300px;
  height: 300px;
  background-image: url("dots.svg");
  background-size: contain;
  background-repeat: no-repeat;
  
  
  
  z-index: 0;
}
 /* MEHR ERFAHREN Button*/
.cta-small {
  display: inline-block;
  margin-top: 10px;
  background-color: #FD3A37;
  color: #fff;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-small:hover {
  background-color: #FF6B68;
}

@media (max-width: 770px) {
  .dots {
      display: none;
  }
}

/* Stil für die Sektionen UNSER TEAM*/
.unserteambereich {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #f9f9f9;
  border-radius: 15px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.unserteam-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.unserteam-text {
  flex: 1;
  color: #333;
  text-align: justify;
  position: center;
  margin-left: 30px;
  margin-right: 30px;
}

.unserteam-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.unserteam-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.unserteam-image img {
  width: 300px;
  height: 300px;
  
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Stil für dekorative Punkte als Hintergrundbild */
.unserteambereich::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 10px;
  left: 10px;
  opacity: 0.6;
  z-index: -1;
}

/* Medienabfragen für mobile Darstellung */
@media (max-width: 768px) {
  .unserteam-content {
      flex-direction: column;
      text-align: center;
  }
  .unserteam-text {
      text-align: center;
  }
  .unserteambereich::before {
      width: 80px;
      height: 80px;
      top: 5px;
      left: 5px;
  }
}

.dots-team {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 30px;
  margin-top: 30px;
  width: 300px;
  height: 300px;
  background-image: url("dotsteam.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (max-width: 770px) {
  .dots-team {
      display: none;
  }
}


/* Stil für FUHRPARK rechts */
.fuhrpark1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #f9f9f9;
  border-radius: 15px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  
}

.fuhrpark1-content {
  display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      height: 100%;
      
}

.fuhrpark1-text {
  flex: 1;
  color: #333;
  text-align: justify;
  position: center;
  margin-left: 30px;
  margin-right: 30px;
  
}

.fuhrpark1-text h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
  
}



.fuhrpark1-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}

.fuhrpark1-image img {
  max-width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  
}

/* Stil für dekorative Punkte als Hintergrundbild */
.fuhrpark1::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 10px;
  right: 10px;
  opacity: 0.6;
  z-index: -1;
}

/* Medienabfragen für mobile Darstellung */
@media (max-width: 768px) {
  .fuhrpark1-content {
      flex-direction: column;
      text-align: center;
  }
  .fuhrpark1-text {
      text-align: center;
  }
  .fuhrpark1::before {
      width: 80px;
      height: 80px;
      top: 5px;
      right: 5px;
  }
}

.dots-fuhrpark1 {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 30px;
  margin-top: 30px;
  width: 300px;
  height: 300px;
  background-image: url("dots.svg");
  background-size: contain;
  background-repeat: no-repeat;
  
  
  
  z-index: 0;
}
 /* MEHR ERFAHREN Button*/
.cta-small {
  display: inline-block;
  margin-top: 10px;
  background-color: #FD3A37;
  color: #fff;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-small:hover {
  background-color: #FF6B68;
}

@media (max-width: 770px) {
  .dots-fuhrpark1 {
      display: none;
  }
}

/* Stil für die Sektionen Fuhrpark links*/
.fuhrpark2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #f9f9f9;
  border-radius: 15px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  
}

.fuhrpark2-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.fuhrpark2-text {
  flex: 1;
  color: #333;
  text-align: justify;
  position: center;
  margin-left: 30px;
  margin-right: 30px;
}

.fuhrpark2-text h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.fuhrpark2-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.fuhrpark2-image img {
  max-width: 60%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Stil für dekorative Punkte als Hintergrundbild */
.fuhrpark2::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 10px;
  left: 10px;
  opacity: 0.6;
  z-index: -1;
}

/* Medienabfragen für mobile Darstellung */
@media (max-width: 768px) {
  .fuhrpark2-content {
      flex-direction: column;
      text-align: center;
  }
  .fuhrpark2-text {
      text-align: center;
  }
  .fuhrpark2::before {
      width: 80px;
      height: 80px;
      top: 5px;
      left: 5px;
  }
}

.dots-fuhrpark2 {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 30px;
  margin-top: 30px;
  width: 300px;
  height: 300px;
  background-image: url("dotsteam.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (max-width: 770px) {
  .dots-fuhrpark2 {
      display: none;
  }
}


/* Stellenangebote */

.job-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.job-listing {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.job-listing:hover {
  transform: translateY(-4px);
}

.job-listing h2 {
  margin-top: 0;
  color: #0053a0;
}

.job-listing p {
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
}

.apply-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #0053a0;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.apply-button:hover {
  background-color: #003f7d;
}


/* Stellenagebote Kontakt */

.bewerbung {
  background-color: #f8f9fb;
  padding: 3rem 1rem;
}

.bewerbungs-form .form-group {
  margin-bottom: 1.5rem;
}

.bewerbungs-form input[type="text"],
.bewerbungs-form input[type="email"],
.bewerbungs-form input[type="tel"],
.bewerbungs-form input[type="file"],
.bewerbungs-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.bewerbungs-form textarea {
  resize: vertical;
}

.bewerbungs-form button {
  background-color: #0053a0;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.bewerbungs-form button:hover {
  background-color: #003f7d;
}

.bewerbungs-form .checkbox {
  display: flex;
  align-items: center;
}

.bewerbungs-form .checkbox input {
  margin-right: 0.5rem;
}
