  /* Reset und Basis-Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.fahrzeug-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Banner */
.fahrzeug-top-banner {
    background-color: #ff6600;
    color: white;
    text-align: center;
    padding: 4px 0;
    font-weight: 500;
    font-size: 12px;
}

/* Header Styles */
.fahrzeug-hauptkopfzeile {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 0;
}

.fahrzeug-kopfzeile-inhalt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fahrzeug-menu-knopf {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.fahrzeug-logo {
    display: flex;
    align-items: center;
}

.fahrzeug-logo img {
    height: 40px;
}

.fahrzeug-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fahrzeug-nav-element {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.fahrzeug-nav-element i {
    font-size: 1.2rem;
}
.fahrzeug-nav-element span a{
    color: #fff;
    text-decoration: none;
}

/* Main Content Styles */
.fahrzeug-hauptinhalt {
    position: relative;
    min-height: calc(100vh - 120px);
    padding: 0; /* Removed padding to make background image touch header */
    overflow: hidden;
}

.fahrzeug-buchungsformular {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 30px 0; /* Changed margin-bottom to margin to maintain spacing */
}

.fahrzeug-hintergrund-bild {
    position: absolute;
    top: 0; /* Changed from bottom to top to make it touch the header */
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.fahrzeug-hintergrund-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Booking Form Styles */
.fahrzeug-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.fahrzeug-tab-knopf {
    background-color: #f0f0f0;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fahrzeug-tab-knopf.aktiv {
    background-color: #1a1a1a;
    color: white;
}

.fahrzeug-tab-knopf i {
    font-size: 1rem;
}

.fahrzeug-formular-titel {
    margin-bottom: 15px;
    font-weight: 500;
}

.fahrzeug-standort-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    width: 85%;
}

.fahrzeug-standort-eingabe {
  color: black;
}

.fahrzeug-standort-eingabe i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.fahrzeug-standort-eingabe input {
    width: 100%;
    border: none;
    padding-left: 30px;
    font-size: 1rem;
    outline: none;
}

.fahrzeug-anderer-ort {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.fahrzeug-datum-zeit-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.fahrzeug-datum-zeit-gruppe {
    flex: 1;
    min-width: 200px;
}

.fahrzeug-datum-zeit-gruppe label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.fahrzeug-datum-zeit-eingabe {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.fahrzeug-datum-eingabe {
    flex: 2;
    position: relative;
    border-right: 1px solid #ddd;
}

.fahrzeug-datum-eingabe i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.fahrzeug-datum-eingabe input {
    width: 100%;
    border: none;
    padding: 10px 10px 10px 35px;
    font-size: 1rem;
    outline: none;
}

.fahrzeug-zeit-eingabe {
    flex: 1;
    position: relative;
}

.fahrzeug-zeit-eingabe input {
    width: 100%;
    border: none;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    outline: none;
}

.fahrzeug-suchen-knopf {
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto;
}

.fahrzeug-suchen-knopf:hover {
    background-color: #e55c00;
}

.fahrzeug-firmenrate {
    margin-top: 10px;
}

.fahrzeug-firmenrate a {
    color: #333;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Date Picker Styles */
.fahrzeug-datepicker-container {
    position: relative;
}

.fahrzeug-datepicker {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    margin-top: 5px; /* Add some space between input and dropdown */
}

.fahrzeug-datepicker.aktiv {
    display: block;
}

.fahrzeug-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.fahrzeug-datepicker-month {
    font-weight: 500;
}

.fahrzeug-datepicker-nav {
    display: flex;
    gap: 10px;
}

.fahrzeug-datepicker-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.fahrzeug-datepicker-calendar {
    padding: 10px;
}

.fahrzeug-datepicker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 500;
    margin-bottom: 5px;
}

.fahrzeug-datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.fahrzeug-datepicker-day {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.fahrzeug-datepicker-day:hover {
    background-color: #f0f0f0;
}

.fahrzeug-datepicker-day.selected {
    background-color: #ff6600;
    color: white;
}

.fahrzeug-datepicker-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.fahrzeug-datepicker-time {
    padding: 10px;
    border-top: 1px solid #eee;
}

.fahrzeug-datepicker-time select {
    width: 45%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.fahrzeug-datepicker-actions {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    border-top: 1px solid #eee;
}

.fahrzeug-datepicker-actions button {
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
}

.fahrzeug-datepicker-actions button:hover {
    background-color: #e55c00;
}



/* Highlight clickable fields */
.fahrzeug-clickable {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.fahrzeug-clickable:hover {
    background-color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .fahrzeug-navigation {
        gap: 15px;
    }

    .fahrzeug-datum-zeit-container {
        flex-direction: column;
    }

    .fahrzeug-suchen-knopf {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .fahrzeug-menu-knopf {
        display: block;
    }

    .fahrzeug-navigation {
        display: none;
    }

    .fahrzeug-navigation.aktiv {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        padding: 20px;
        z-index: 100;
    }

    .fahrzeug-standort-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .fahrzeug-anderer-ort {
        margin-top: 10px;
    }

    .fahrzeug-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .fahrzeug-tab-knopf {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .fahrzeug-formular-titel {
        font-size: 1.1rem;
    }

    .fahrzeug-datepicker {
        width: 280px;
    }
    .fahrzeug-datum-eingabe input {
        width: 60%;
        padding: 10px 2px 10px 2px;
        font-size: 0.7rem;
    }
}




/* Unique banner styling */
.rent-banner-unique {
    background-color: #ff6000;
    padding: 10px 20px;
    text-align: center;
    color: #111;
    font-family: Arial, sans-serif;
  }
  .rent-banner-uniquess{
    padding: 10px 20px;
    text-align: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin-top: 12%;

  }
  
  .rent-banner-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .rent-banner-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
  }
  
  .rent-banner-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .rent-banner-heading {
      font-size: 2.2rem;
    }
  
    .rent-banner-subtext {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .rent-banner-heading {
      font-size: 1.8rem;
    }
  
    .rent-banner-subtext {
      font-size: 0.9rem;
    }
  }
  





  .car-features-unique {
    padding: 60px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .car-features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .car-feature-box {
    flex: 1 1 30%;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
  }
  
  .car-feature-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
  }
  
  .car-feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px;
  }
  
  .car-feature-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #111;
    line-height: 1.4;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .car-features-container {
      flex-direction: column;
      align-items: center;
    }
  
    .car-feature-box {
      text-align: center;
    }
  }

  





  .car-offers-section {
    padding: 40px 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
  }
  
  .car-offer-box {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .car-offer-box.large {
    height: 360px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
  }
  
  .car-offer-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .car-offer-box.small {
    flex: 1 1 48%;
    height: 320px;
    display: flex;
    align-items: flex-end;
  }
  
  .car-offer-content {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
    width: 100%;
  }
  
  .car-offer-badge {
    background-color: #fff;
    color: #000;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .car-offer-badge strong {
    font-size: 1.5rem;
    display: block;
  }
  
  .car-offer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 10px;
  }
  
  .car-offer-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .car-offer-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
  }
  
  .car-offer-button:hover {
    background-color: white;
    color: black;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .car-offer-grid {
      flex-direction: column;
    }
  
    .car-offer-box.small {
      flex: 1 1 100%;
    }
  
    .car-offer-box.large,
    .car-offer-box.small {
      height: auto;
    }
  }

  



  .mehr-sixt-container {
    background-color: #f1f2f6;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .mehr-sixt-heading {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
  }
  
  .mehr-sixt-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .mehr-sixt-card {
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    width: 300px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
  }
  
  .mehr-sixt-content {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
    color: white;
  }
  
  .mehr-sixt-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
  }
  
  .mehr-sixt-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .mehr-sixt-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .mehr-sixt-button:hover {
    background-color: white;
    color: black;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .mehr-sixt-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .mehr-sixt-card {
      width: 100%;
      max-width: 90%;
      height: 420px;
    }
  }

  
  .testimonial-section-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }
  
  .testimonial-section-slide {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .testimonial-section-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: 0 20px;
  }
  
  .testimonial-section-text {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .testimonial-section-author {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .testimonial-section-text {
      font-size: 1.2rem;
    }
  
    .testimonial-section-author {
      font-size: 0.9rem;
    }
  
    .testimonial-section-slide {
      height: 400px;
    }
  }

  



  .footer-section-container {
    background-color: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
  }
  
  .footer-section-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section-logo img {
    width: 80px;
  }
  
  .footer-section-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .footer-section-columns > div {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-section-columns h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6200;
    font-weight: 600;
  }
  
  .footer-section-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section-columns li {
    margin-bottom: 10px;
    cursor: pointer;
    color: #eee;
    font-size: 0.95rem;
  }
  
  .footer-section-apps img {
    height: 40px;
    margin-right: 10px;
    margin-top: 15px;
  }
  
  .footer-section-socials {
    margin-top: 15px;
  }
  
  .footer-section-socials a {
    color: #fff;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .footer-section-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
  }
  
  .footer-section-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;
    font-size: 0.85rem;
    color: #ccc;
  }
  
  .footer-section-links li a {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
  }
  .footer-section-columns li a {
    color: #fff;
    text-decoration: none;
  }
  
  
  @media (max-width: 768px) {
    .footer-section-columns {
      flex-direction: column;
    }
  
    .footer-section-apps img {
      height: 35px;
    }
  
    .footer-section-bottom {
      font-size: 0.8rem;
    }
  }
  



  .hilfe-center-container {
padding: 40px 20px;
max-width: 1200px;
margin: auto;
font-family: Arial, sans-serif;
}

.hilfe-center-header h1 {
font-size: 32px;
font-weight: 700;
}

.hilfe-center-header p {
font-size: 16px;
margin-top: 10px;
}

.hilfe-center-search {
margin: 30px 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
width: 30%;
}

.hilfe-center-search input {
flex: 1;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
}

.hilfe-center-search button {
padding: 12px 24px;
background-color: #ff914d;
border: none;
border-radius: 8px;
color: white;
font-weight: bold;
cursor: pointer;
}

.hilfe-center-subtitle {
margin: 30px 0 20px;
font-size: 20px;
font-weight: 700;
text-align: center;
}

.hilfe-center-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.hilfe-card {
background: #f9f9f9;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hilfe-card h3 {
margin-bottom: 10px;
font-size: 18px;
}

.hilfe-card p {
font-size: 14px;
}

.hilfe-card a {
font-weight: bold;
text-decoration: underline;
color: #000;
}



.hilfe-kategorien {
    padding: 40px 20px;
    background-color: #f1f1f6;
    font-family: Arial, sans-serif;
  }
  
  .kategorien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .kategorie-box {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
  }
  
  .kategorie-box:hover {
    transform: translateY(-4px);
  }
  
  .kategorie-box h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .kategorie-box ul {
    list-style: none;
    padding-left: 0;
  }
  
  .kategorie-box li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
  }

  

  .mobilitaets-hilfe {
    padding: 50px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .mobilitaets-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .mobilitaets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .mobilitaets-item {
    padding: 30px 20px;
    border-radius: 16px;
    transition: transform 0.3s ease;
  }
  
 
  
  .mobilitaets-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .mobilitaets-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .mobilitaets-item p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }
  

    .privacy-de-section {
      font-family: Arial, sans-serif;
      margin: 40px;
      color: #222;
    }

    .privacy-de-section h1 {
      text-align: center;
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .privacy-de-section h2 {
      font-size: 1.5rem;
      margin-top: 30px;
      color: #000;
    }

    .privacy-de-section p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .privacy-de-section ul {
      margin-bottom: 30px;
    }

    .privacy-de-section ul li {
      margin: 5px 0;
    }

    .privacy-de-section a {
      color: #0044cc;
      text-decoration: none;
      font-weight: bold;
    }

    .privacy-de-section a:hover {
      text-decoration: underline;
    }

    .privacy-de-section .footer-note {
      margin-top: 40px;
      font-size: 0.9rem;
    }

    




    .marketing-de-section {
        font-family: Arial, sans-serif;
        width:94%;
        margin: 40px auto;
        color: #222;
      }
  
      .marketing-de-section h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
      }
  
      .marketing-de-section p {
        font-size: 1rem;
        margin-bottom: 20px;
      }
  
      .accordion {
        border-top: 1px solid #ccc;
      }
  
      .accordion-item {
        border-bottom: 1px solid #ccc;
      }
  
      .accordion-header {
        background: #f9f9f9;
        cursor: pointer;
        padding: 15px;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
  
      .accordion-header:hover {
        background: #efefef;
      }
  
      .accordion-content {
        display: none;
        padding: 15px;
        background: #fcfcfc;
        font-size: 0.95rem;
        line-height: 1.5;
      }
  
      .accordion-header::after {
        content: '▼';
        font-size: 0.8rem;
        transition: transform 0.3s ease;
      }
  
      .accordion-header.active::after {
        transform: rotate(180deg);
      }

      .abschnitt-nutzungsbedingungen {
        padding: 40px 20px;
        background-color: #fdfdfd;
        font-family: 'Segoe UI', sans-serif;
      }
      
      .nutzungsbedingungen-ueberschrift {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 40px;
        color: #111;
      }
      
      .nutzungsbedingungen-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
      }
      
      .nbkategorie h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #222;
        font-weight: 600;
      }
      
      .nbkategorie ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .nbkategorie ul li {
        margin-bottom: 8px;
      }
      
      .nbkategorie ul li a {
        text-decoration: none;
        color: #0056b3;
        font-weight: 500;
      }
      
      .nbkategorie ul li a:hover {
        text-decoration: underline;
        color: #003580;
      }
      




    
      .kontakt-sektion-wrapper {
        padding: 60px 20px;
      }
      
      .kontakt-container-einzigartig {
        max-width: 1100px;
        margin: 0 auto;
        padding: 40px;
        border-radius: 16px;
      }
      
      .kontakt-ueberschrift-einzigartig {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 10px;
      }
      
      .kontakt-einleitung-einzigartig {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.1rem;
        color: #555;
      }
      
      .kontakt-grid-einzigartig {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 40px;
      }
      
      .kontakt-infos-einzigartig,
      .kontakt-formular-einzigartig {
        flex: 1 1 300px;
      }
      
      .kontakt-infos-einzigartig h3,
      .kontakt-formular-einzigartig h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: #333;
      }
      
      .kontakt-formular-einzigartig form {
        display: flex;
        flex-direction: column;
      }
      
      .kontakt-formular-einzigartig input,
      .kontakt-formular-einzigartig textarea {
        margin-bottom: 15px;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1rem;
        resize: vertical;
      }
      
      .kontakt-formular-einzigartig button {
        padding: 12px;
        background-color: #ff6c03;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s ease;
      }
      
      .kontakt-formular-einzigartig button:hover {
        background-color: #d45900;
      }
      
      .google-map-einzigartig iframe {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
      }
      
      /* Responsiv */
      @media (max-width: 768px) {
        .kontakt-container-einzigartig {
          padding: 20px;
        }
      
        .kontakt-grid-einzigartig {
          flex-direction: column;
        }
      }
      










.fahrzeug-standort-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.fahrzeug-standort-eingabe {
    position: relative;
    width: 100%;
}

#search {
    width: 100%;
    padding: 10px 35px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.fas.fa-search {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #aaa;
}

#airportList {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.airport-search__result {
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.airport-search__result:hover {
    background: #f0f0f0;
    cursor: pointer;
}

.airport__name {
    font-weight: bold;
    margin: 0;
}

.airport__city {
    margin: 0;
    font-size: 12px;
    color: #555;
}