body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #022b3a;
}

.navbar {
    padding: 1.5rem;
}

.logo {
    width: 230px; /* Breite anpassen */
    height: auto; /* Höhe proportional skalieren */
    display: block; /* Block-Darstellung */
    margin-left: 130px;
    margin-top: -20px;
}
.navbar-brand svg {
    height: 50px;
    fill: #fca311;
}

.nav-link {
    color: white;
    font-size: 1rem;
    margin-left: 20px;
}

.nav-link:hover {
    color: #fca311;
}

.dropdown-menu {
    background-color: #022b3a;
    border: none;
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #333;
}

.navbar-toggler {
    border-color: #fca311; /* Ändert den Button-Stil */
}

.navbar-toggler-icon {
    background-color: #fca311;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

#languageDropdown:hover + .dropdown-menu,
#languageDropdown:focus + .dropdown-menu {
    display: none !important;
}

.bi-globe {
    font-size: 1.5rem;
    color: white;
}

.bi-globe:hover {
    color: #fca311;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0.5rem;
      position: relative;
      flex-direction: row;
  }

  .logo {
      width: 200px; /* Etwas größeres Logo für mobile Geräte */
      margin: 0 auto;
      display: block;
  }

  /* Burger-Menü leicht nach links rücken */
  .navbar-toggler {
      border: 2px solid #fca311;
      background-color: #022b3a;
      border-radius: 5px;
      padding: 5px 10px;
      color: white;
      margin-right: 60px; /* Schafft Platz für die Sprachauswahl */
  }

  .navbar-toggler-icon {
      background-color: #fca311;
      border-radius: 3px;
      width: 24px;
      height: 3px;
      position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      content: "";
      background-color: #fca311;
      display: block;
      position: absolute;
      width: 24px;
      height: 3px;
      left: 0;
  }

  .navbar-toggler-icon::before {
      top: -8px; /* Abstand nach oben */
  }

  .navbar-toggler-icon::after {
      top: 8px; /* Abstand nach unten */
  }

  .nav-link {
      font-size: 0.9rem;
      margin: 5px 0;
  }
  
  /* Sprachumschalter: absolut im Header positioniert, direkt neben dem Burger-Menü */
  .language-switcher {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      display: block;
      z-index: 1000;
  }
  
  /* Standardmäßig soll im Sprachumschalter-Button nur die Flagge sichtbar sein */
  .language-switcher .dropbtn {
      background-color: transparent;
      border: none;
      padding: 8px;
  }
  
  .language-switcher .dropbtn > *:not(.flag-icon) {
      display: none;
  }
}

@media (max-width: 576px) {
  .navbar {
      padding: 0.5rem;
  }

  .logo {
      width: 180px;
  }

  .navbar-toggler {
      padding: 6px 12px;
  }

  .navbar-toggler-icon {
      width: 20px;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
      width: 20px;
  }
  .collapse {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
  }

  .collapse.show {
      max-height: 300px;
      opacity: 1;
  }
  .collapse {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .collapse.show {
    opacity: 1;
  }

  .collapse:not(.show) {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
}

/* Header Styling */
.site-header {
  background-color: #022b3a;
  padding: 10px 20px;
}

/* Sprachumschalter Dropdown */
.language-switcher {
  display: flex;
  justify-content: flex-end;
}

/* Dropdown Container */
.language-switcher .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.dropbtn {
  background-color: #022b3a;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover Effekt für den Button */
.dropbtn:hover,
.dropbtn:focus {
  background-color: #fca311;
  color: #022b3a;
}

/* Flaggen-Icon Styling */
.flag-icon {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #022b3a;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 9999;
}

/* Dropdown Links */
.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover Effekt für Dropdown Links */
.dropdown-content a:hover,
.dropdown-content a:focus {
  background-color: #fca311;
  color: #022b3a;
}

/* Dropdown anzeigen, wenn der Container gehovt wird */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive Anpassungen für Sprachumschalter-Dropdown */
@media (max-width: 768px) {
  .dropbtn {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .dropdown-content {
    min-width: 140px;
  }
  
  .dropdown-content a {
    font-size: 14px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .dropbtn {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .dropdown-content a {
    font-size: 13px;
    padding: 8px 10px;
  }
  
  .flag-icon {
    width: 18px;
  }
}




/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    background-color: #022b3a;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Animated Text */

.animate {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: -200px; /* Buchstabenabstand */
  font-size: 6rem;
  font-weight: 1000;
  text-transform: lowercase;
}

.animate .white {
  color: #fff;
}

.animate .highlight {
  color: #fca311;
  font-weight: bold;
}

.animate span {
    color: #fcfaf9;
    opacity: 0;
    transform: translate(0, -100px) rotate(360deg) scale(0);
    animation: revolveDrop 0.5s forwards;
}

.animate span:nth-of-type(2) {
    animation-delay: 0.1s;
}

.animate span:nth-of-type(3) {
    animation-delay: 0.2s;
}

.animate span:nth-of-type(4) {
    animation-delay: 0.3s;
}

.animate span:nth-of-type(5) {
    animation-delay: 0.4s;
}

.animate span:nth-of-type(6) {
    animation-delay: 0.5s;
}

.animate span:nth-of-type(7) {
    animation-delay: 0.6s;
}

.animate span:nth-of-type(8) {
    animation-delay: 0.7s;
}

.animate span:nth-of-type(9) {
    animation-delay: 0.8s;
}

/* Animation Keyframes */
@keyframes revolveDrop {
    30% {
        transform: translate(0, -50px) rotate(180deg) scale(1);
    }

    60% {
        transform: translate(0, 20px) scale(0.8) rotate(0deg);
    }

    100% {
        transform: translate(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ========== Media Queries für Responsivität ========== */

/* Smartphones: Bis zu 576px */
@media (max-width: 576px) {
  .hero-section {
      height: 60vh; /* Geringere Höhe */
  }
  .animate {
      font-size: 3rem; /* Kleinere Schriftgröße */
      gap: -5px; /* Buchstabenabstand verringern */
  }
}

/* Tablets: Bis zu 768px */
@media (max-width: 768px) {
  .hero-section {
      height: 65vh; /* Mittlere Höhe */
  }
  .animate {
      font-size: 4rem; /* Reduzierte Schriftgröße */
      gap: -8px;
  }
}

/* Laptops und kleinere Bildschirme: Bis zu 1024px */
@media (max-width: 1024px) {
  .hero-section {
      height: 70vh; /* Beibehaltung der Standardhöhe */
  }
  .animate {
      font-size: 5rem; /* Etwas größere Schrift */
      gap: -10px;
  }
}






.intro-section {
    background-color: #022b3a;
    color: white;
    padding: 60px 20px;
    position: relative;
}

.intro-section .text-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fca311;
    margin-bottom: 20px;
}

.intro-section .text-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-section .explore-btn {
    padding: 12px 20px;
    background-color: #fca311;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.intro-section .explore-btn:hover {
    background-color: #fca311;
    color: #022b3a;
}

.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Smartphones: Bis zu 576px */
@media (max-width: 576px) {
    .intro-section {
        flex-direction: column; /* Elemente untereinander anordnen */
        gap: 20px;
        text-align: center; /* Text zentrieren */
    }

    .intro-section .text-section h2 {
        font-size: 1.8rem; /* Kleinere Schriftgröße */
    }

    .intro-section .text-section p {
        font-size: 0.9rem; /* Kleinere Schriftgröße */
        line-height: 1.5; /* Weniger Abstand */
    }

    .intro-section .explore-btn {
        font-size: 0.9rem; /* Kleinere Buttons */
        padding: 10px 15px;
    }

    .image-section img {
        max-width: 40%; /* Deutlich kleineres Bild */
    }
}

/* Tablets: Bis zu 768px */
@media (max-width: 768px) {
    .intro-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .intro-section .text-section h2 {
        font-size: 2rem;
    }

    .intro-section .text-section p {
        font-size: 1rem;
    }

    .intro-section .explore-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }

    .image-section img {
        max-width: 50%; /* Bildgröße an Tablets angepasst */
    }
    .logo-section {
      display: none !important; /* Bild und Container komplett ausblenden */
  }
}

/* Laptops: Bis zu 1024px */
@media (max-width: 1024px) {
    .intro-section {
        gap: 40px;
    }

    .intro-section .text-section h2 {
        font-size: 2.2rem;
    }

    .intro-section .text-section p {
        font-size: 1.1rem;
    }

    .image-section img {
        max-width: 60%; /* Bildgröße reduziert */
    }
    
}




.modern-card {
    background: linear-gradient(145deg, #2a2a2a, #022b3a);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 400px;
}

.modern-card .card-content {
    position: relative;
    z-index: 2;
}

.modern-card .card-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fca311;
}

.modern-card .card-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cccccc;
}

.modern-card .highlight {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.modern-card .circle {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(169, 125, 74, 0.1);
    border-radius: 50%;
    z-index: 1;
}


.blog-section {
    background-color: #f9f9f9;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #022b3a;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #666;
  }
  
  .blog-item {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .blog-image {
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }
  
  .blog-title {
    font-size: 1.5rem;
    color: #022b3a;
  }
  
  .blog-excerpt {
    font-size: 1rem;
    color: #666;
  }
  
  .blog-read-more {
    background-color: #fca311;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .blog-read-more:hover {
    background-color: #022b3a;
  }
  
/* Standard: Mobile Ansicht */
@media (max-width: 768px) {
  #blogCarousel .carousel-item .row {
    flex-direction: column !important;
    align-items: center;
  }

  #blogCarousel .carousel-item .col-md-4 {
    flex: 0 0 100% !important; /* Eine Karte pro Slide */
    max-width: 100% !important;
    margin-bottom: 15px; /* Abstand zwischen den Karten */
  }
}

/* Desktop: 3 Karten pro Slide */
@media (min-width: 769px) {
  #blogCarousel .carousel-inner .carousel-item {
    display: flex !important;
  }

  #blogCarousel .carousel-item .row {
    flex-wrap: nowrap !important;
  }

  #blogCarousel .carousel-item .col-md-4 {
    flex: 0 0 33.33% !important; /* Drei Karten nebeneinander */
    max-width: 33.33% !important;
  }
}

  
  

  .rental-section {
    padding: 100px 20px;
    background-color: #022b3a;
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .rental-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .rental-content {
    flex: 1 1 50%;
    position: relative;
    z-index: 2;
  }
  
  .highlight-box {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(45deg, #fca311, #d4aa6a);
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .rental-title {
    font-size: 3rem;
    margin: 0;
    color: #022b3a;
    font-weight: bold;
  }
  
  .rental-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
    color: white;
  }
  
  .rental-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 20px 0;
  }
  
  .rental-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fca311;
    color: #022b3a;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .rental-button:hover {
    background-color: #ffffff;
    color: #022b3a;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  }
  
  .rental-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  
  .floating-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .floating-box img {
    width: 100%;
    max-width: 500px;
    display: block;
  }
  
  .floating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 29, 27, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .floating-box:hover .floating-overlay {
    opacity: 1;
  }
  
  .floating-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  }
  
  .floating-text {
    text-align: center;
    color: white;
  }
  
  .floating-text h3 {
    font-size: 3rem;
    margin: 0;
    color: #fca311;
  }
  
  .floating-text p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #e0e0e0;
  }
  
  .wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  .wrapper .icon:hover {
    background: #222;
    color: #fff;
    transform: scale(1.1);
  }
  
  .wrapper .tooltip {
    display: none;
  }
  
  .customer-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.customer-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #022b3a;
    margin-bottom: 10px;
}

.customer-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.customer-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.customer-text .highlight {
    font-weight: bold;
    color: #022b3a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Zwei Spalten */
  gap: 20px; /* Abstand zwischen den Items */
  text-align: center;
  margin-top: 20px;
}

.stat-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #022b3a;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
}








.customer-section {
    background-color: white !important;
    padding: 40px 0 !important;
}

.customer-section .section-title {
    text-align: center !important;
    font-size: 2rem !important;
    color: #022b3a !important;
    margin-bottom: 20px !important;
}

.customer-logos {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important; /* Flexible Spalten */
    gap: 20px !important; /* Abstand zwischen Logos */
    justify-content: center !important; /* Zentriert Logos horizontal */
    align-items: center !important;
    padding: 0 40px !important; /* Weniger Abstand von den Bildschirmrändern */
    margin: 0 auto !important; /* Zentrierte Ausrichtung */
}

.customer-logos .logo {
    max-width: 120px !important; /* Logos etwas kleiner */
    text-align: center !important;
    transition: transform 0.3s ease !important;
}

.customer-logos .logo img {
    width: 70% !important; /* Kleinere Logos */
    height: auto !important;
    display: block !important;
    margin: 0 auto !important; /* Zentriert die Logos */
}

.customer-logos .logo:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

@media (min-width: 1200px) {
    .customer-logos {
        padding: 0 20px !important; /* Weniger Platz von den Seitenrändern */
        gap: 20px !important; /* Angemessener Abstand zwischen Logos */
    }

    .customer-logos .logo {
        max-width: 90px !important; /* Logos etwas kleiner */
    }
}
/* Tablet Ansicht */
@media (max-width: 768px) {
    .customer-section {
        padding: 30px 0 !important;
    }

    .customer-section .section-title {
        font-size: 1.8rem !important;
    }

    .customer-logos {
        grid-template-columns: repeat(2, 1fr) !important; /* Zwei Spalten */
        gap: 15px !important; /* Weniger Abstand */
    }

    .customer-logos .logo {
        max-width: 100px !important; /* Größe anpassen */
    }
}

/* Tablet Ansicht */
@media (max-width: 768px) {
    .customer-section {
        padding: 30px 0 !important;
    }

    .customer-section .section-title {
        font-size: 1.8rem !important;
    }

    .customer-logos {
      grid-template-columns: repeat(2, 1fr) !important; /* Zwei Spalten */
      gap: 15px !important; /* Weniger Abstand */
  }

  .customer-logos .logo {
    max-width: 80px !important; /* Größe anpassen */
}
}

/* Smartphone Ansicht */
@media (max-width: 576px) {
  .customer-section {
      padding: 20px 0 !important;
  }

  .customer-section .section-title {
      font-size: 1.5rem !important;
  }

  .customer-logos {
      grid-template-columns: repeat(2, 1fr) !important; /* Zwei Spalten */
      gap: 15px !important; /* Weniger Abstand */
  }

  .customer-logos .logo {
      max-width: 90px !important; /* Logos kleiner machen */
  }

  .customer-logos .logo img {
      margin: 0 auto !important; /* Sicherstellen, dass die Logos zentriert sind */
  }
}




.benefits-section {
    padding: 60px 20px;
    background: url('assets/benefits.jpg') center/cover no-repeat;
    color: white;
  }
  
  .section2-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fca311;
    text-shadow: 2px 2px 4px black; /* Schwarzer Rand */
  }
  
  .section2-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px black; /* Schwarzer Rand */
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .benefit-item i {
    font-size: 2rem;
    color: #fca311;
  }
  
  .benefit-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px black; /* Schwarzer Rand */
  }
  
  .benefit-item p {
    font-size: 1rem;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 2px black; /* Schwarzer Rand */
  }
  /* Tablets: Max 768px */
@media (max-width: 768px) {
  .benefits-section {
      padding: 40px 15px; /* Weniger Padding */
  }

  .section2-title {
      font-size: 2rem; /* Kleinere Schriftgröße */
  }

  .section2-subtitle {
      font-size: 1rem; /* Kleinere Schriftgröße */
      margin-bottom: 30px;
  }

  .benefits-grid {
      grid-template-columns: repeat(1, 1fr); /* Eine Spalte */
      gap: 15px;
  }

  .benefit-item i {
      font-size: 1.8rem; /* Kleinere Icons */
  }

  .benefit-item h3 {
      font-size: 1rem; /* Kleinere Überschriften */
  }

  .benefit-item p {
      font-size: 0.9rem; /* Kleinere Texte */
  }
}

/* Smartphones: Max 576px */
@media (max-width: 576px) {
  .benefits-section {
      padding: 30px 10px; /* Noch weniger Padding */
  }

  .section2-title {
      font-size: 1.8rem; /* Kleinere Schriftgröße */
  }

  .section2-subtitle {
      font-size: 0.9rem; /* Noch kleinere Schriftgröße */
      margin-bottom: 20px;
  }

  .benefits-grid {
      gap: 10px; /* Weniger Abstand */
  }

  .benefit-item i {
      font-size: 1.5rem; /* Noch kleinere Icons */
  }

  .benefit-item h3 {
      font-size: 0.9rem; /* Noch kleinere Überschriften */
  }

  .benefit-item p {
      font-size: 0.8rem; /* Noch kleinere Texte */
  }
}







  .modern-golfcart-section { 
    padding: 0px 30px; /* Weniger Platz oben und unten */
    background: white;
    color: #022b3a;
  }
  
  .modern-content-wrapper {
    padding: 20px;
  }
  
  .modern-section-title {
    font-size: 3.2rem; /* Leicht kleinere Überschrift */
    color: #fca311;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .modern-section-text {
    font-size: 1.1rem; /* Kleinere Schriftgröße */
    margin-bottom: 15px;
    color: #333333;
  }
  
  .modern-btn.modern-explore-btn {
    background-color: #fca311;
    color: white;
    font-size: 1.2rem; /* Leicht kleinere Schrift für den Button */
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(139, 86, 86, 0.3);
    transition: all 0.3s ease;
  }
  
  .modern-btn.modern-explore-btn:hover {
    background-color: white;
    color: #fca311;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .modern-golfcart-image {
    width: 100%; /* Gleiche Breite, damit das Bild größer bleibt */
    max-width: 750px; /* Kleinere maximale Größe */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .modern-golfcart-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
  
  @media (max-width: 768px) {
    .modern-section-title {
        font-size: 2.5rem; /* Kleinere Überschrift */
    }

    .modern-section-text {
        font-size: 1rem; /* Kleinere Schriftgröße für Text */
    }

    .modern-golfcart-image {
        display: none; /* Bild verstecken */
    }
}

/* Smartphones: Max 576px */
@media (max-width: 576px) {
    .modern-section-title {
        font-size: 2rem; /* Noch kleinere Überschrift */
    }

    .modern-content-wrapper {
        padding: 15px; /* Weniger Padding für kleine Bildschirme */
    }

    .modern-section-text {
        font-size: 0.9rem; /* Noch kleinere Schriftgröße für Text */
    }

    .modern-golfcart-image {
        display: none !important; /* Bild komplett verstecken */
    }
}
  
      

      
  
  

  


  .accordion-button {
    background-color: #022b3a;
    color: white;
    font-weight: bold;
    border: 1px solid white;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #fca311;
    color: #022b3a;
  }
  
  .accordion-button:focus {
    box-shadow: none;
  }
  
  .accordion-body {
    background-color: #333333;
    color: white;
    padding: 15px;
  }
  
  .accordion-item {
    border: none;
  }
  
  .accordion-item + .accordion-item {
    margin-top: 10px;
  }
  
  .accordion-header {
    border-radius: 5px;
    overflow: hidden;
  }
  
  .accordion-header button {
    border-radius: 5px;
  }
  
  section {
    background-color: #022b3a;
    padding: 50px;
  }
  
  h1, h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
  }
  
  .accordion-flush {
    max-width: 800px;
    margin: 0 auto;
  }
  
  


  .cta-minimal {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle, rgba(169, 125, 74, 0.1) 10%, transparent 70%);
    z-index: 0;
  }
  
  .cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #022b3a;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fca311;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ddd;
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .cta-content h2 {
      font-size: 2rem;
    }
  
    .cta-content p {
      font-size: 1rem;
    }
  
    .cta-button {
      font-size: 0.9rem;
      padding: 12px 30px;
    }
  }



  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    background-color: #022b3a;

  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important ;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  .footer {
    background-color: #022b3a;
    padding: 70px 20px;
    text-align: center;
  }
  
  .footer-col {
    width: 25%;
    padding: 0 15px;
    text-align: left;
  }
  
  .footer-col h4 {
    font-size: 18px;
    color: rgba(248, 248, 248, 0.867);
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
  }
  
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 3;
    bottom: -8px;
    background-color: #fca311;
    height: 2px;
    width: 50px;
  }
  
  .footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    font-size: 16px;
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
  }
  
  .footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  
  .footer-col .social-links a:hover {
    color: #022b3a;
    background-color: #ffffff;
  }
  
  /* Responsive Design */
  @media (max-width: 767px) {
    .footer-col {
      width: 50%;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 574px) {
    .footer-col {
      width: 100%;
    }
  }
  
  

/* gebrauchte */

a[data-gallery="gallery"] img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

a[data-gallery="gallery"] img:hover {
  transform: scale(1.1);
}

/* technischer support */
/* Mobile Ansicht: Text entfernen */
@media (max-width: 768px) {
  .hero-tech-content h1,
  .hero-tech-content p {
      display: none !important; /* Text ausblenden */
  }
}


        .success-message {
            display: none;
            margin-top: 20px;
            padding: 15px;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            border-radius: 5px;
            text-align: center;
        }
        .error-message {
            display: none;
            margin-top: 20px;
            padding: 15px;
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            border-radius: 5px;
            text-align: center;
        }
