/* ========== RESET & GRUNDLAYOUT ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

/* ========== CONTAINER ========== */
.container {
  width: 98%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.empfehlung-box {
  background-color: #f0f8ff;
  padding: 20px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-weight: 500;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}


.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.site-header nav a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.site-header nav a:hover {
  color: #007BFF;
}

/* Logo-Container */
.logo {
  max-height: 80px;
  height: auto;
  display: block;
}

/* Für die mobile Ansicht */
@media (max-width: 768px) {
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center; /* wichtig für vertikale Ausrichtung */
    padding: 10px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .main-nav.show {
    display: flex;
  }

  .logo {
    max-height: 60px; /* optional etwas kleiner fürs Handy */
  }
}


/* ========== HEro ========== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh; /* passt sich an Bildschirmhöhe an */
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn-hero {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* dunkler Überzug */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.btn-hero {
  display: inline-block;
  background-color: #c8102e;
  color: white;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #880000;
}
/* === Highlight Inro Sarkastisch ====*/
.section-highlights {
  background-color: #fdfdfd;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #222;
}

.section-highlights .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #c60000;
  text-align: center;
}

.highlight-box {
  border-left: 4px solid #c60000;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.highlight-box h3 {
  margin-top: 0;
  color: #c60000;
  font-size: 1.2rem;
}

.highlight-box p {
  margin: 10px 0 0;
}

.highlight-footer {
  background-color: #ffecec;
  border-left: 4px solid #c60000;
  padding: 20px;
  font-style: italic;
  margin-top: 40px;
  color: #444;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.btn-red {
  background-color: #c60000;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-red:hover {
  background-color: #a50000;
}
/* ========== INTRO-ABSCHNITT NACH HERO ========== */
.intro-text {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #444;
  text-align: center;
}
/* ========== FEATURE-ABSCHNITT ========== */
.features-grid {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.features-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #222;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* Titel & Text in Kacheln */
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #aa0000;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}
/* ========== SATTELKOMPETENZ ========== */
.sattelkompetenz-section {
  background-color: #f0f4f7;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.sattelkompetenz-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #aa0000;
}

.sattelkompetenz-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}

.sattelkompetenz-section .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #c8102e;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.sattelkompetenz-section .btn:hover {
  background-color: #a40d25;
}

/* ========== STANDORTE-VOLLFORMAT (mit Video) ========== */
#standorte {
  background: #f4f4f4;
  padding: 60px 0;
}

.location-full {
  width: 100%;
  padding: 40px 20px;
  margin-bottom: 60px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.location-full h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #003366;
}

.location-full p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 12px;
}

/* Video responsive */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Verhältnis */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 20px auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#standorte-map {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

#standorte-map h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

#standort-uebersicht {
  background: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

#standort-uebersicht h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #003366;
}

.standort-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.standort-links a {
  display: inline-block;
  padding: 10px 20px;
  background: #003366;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.standort-links a:hover {
  background: #005599;
}
/* ========== BLOG-BEREICH ========== */
.blog-section {
  background: #ffffff;
  padding: 60px 20px;
}

.blog-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003366;
  padding-top: 40px;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 30px;
  background: #f9f9f9;
  border-left: 5px solid #007BFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 6px;
  line-height: 1.6;
  margin-top: 80px;
}

.blog-post h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #007BFF;
}

.blog-post .blog-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
  display: block;
}

.blog-post h4 {
  font-size: 1.2rem;
  margin-top: 30px;
  padding-left: 12px;
  border-left: 3px solid #ccc;
  color: #333;
}

.blog-post p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 18px;
}
.blog-post {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

.blog-post h1 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 10px;
}

.blog-post h2 {
  font-size: 1.5rem;
  color: #003366;
  margin-top: 40px;
}

.blog-post a {
  color: #005599;
  text-decoration: underline;
}

.blog-post a:hover {
  color: #003366;
}
.centered-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #003366;
}

/* ========== KARRIERE-BEREICH ========== */
.karriere-section {
  background: #f2f7fa;
  padding: 60px 20px;
  text-align: center;
}

.karriere-section h2 {
  font-size: 2rem;
  color: #004a88;
  margin-bottom: 20px;
}

.karriere-section .intro-text {
  font-size: 1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px;
}

.karriere-jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.karriere-job {
  background: white;
  padding: 20px;
  border-left: 4px solid #007BFF;
  border-radius: 6px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.karriere-job h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #007BFF;
}

.karriere-job p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
}

.btn-sml {
  background: #007BFF;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.btn-sml:hover {
  background-color: #0056b3;
}
/* ========== VERSICHERUNG ========== */
.tarifvergleich-wrapper {
  max-width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.tarifvergleich-wrapper h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #aa0000;
  margin-bottom: 30px;
}

/* WICHTIG: äußere Hülle zentriert Tabelle */
.table-wrapper {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 0 10px;
}

/* Standard-Tabellenlayout */
.alteos-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.alteos-table thead {
  background-color: #f9f9f9;
}

.alteos-table th,
.alteos-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.alteos-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #333;
}

.alteos-table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

/* Mobile Ansicht – gestapelt */
@media (max-width: 768px) {
  .alteos-table thead {
    display: none;
  }

  .alteos-table, .alteos-table tbody, .alteos-table tr, .alteos-table td {
    display: block;
    width: 100%;
  }

  .alteos-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  }

  .alteos-table td {
    text-align: left;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .alteos-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #555;
    white-space: nowrap;
  }
}

  
.versicherung-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.versicherung-section h2 {
  font-size: 2rem;
  color: #aa0000;
  margin-bottom: 10px;
}

.versicherung-section .intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.versicherungs-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.versicherung-box {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #aa0000;
  border-radius: 6px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.versicherung-box h3 {
  color: #aa0000;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.versicherung-box p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.beratung-hinweis {
  background: #fff4f4;
  padding: 25px;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
}

.beratung-hinweis h3 {
  color: #880000;
  margin-bottom: 10px;
}



/* FAQ */
.faq-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h3 {
  font-size: 2rem;
  color: #aa0000;
  margin-bottom: 30px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 30px auto;
  background: white;
  padding: 20px;
  border-left: 5px solid #aa0000;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-item h4 {
  color: #aa0000;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
/* ========== marken ========== */
.marken-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.marken-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #003366;
}

.marken-section .intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #555;
}

.marken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.marke {
  background: white;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.2s ease;
}

.marke:hover {
  transform: translateY(-5px);
}

/* Einheitliche Logo-Größe */
.marke img {
  width: auto;
  height: 60px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Einheitliche Überschrift */
.marke h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #007BFF;
  margin: 10px 0;
  min-height: 2.5em; /* gleiche Höhe bei kurzen oder langen Markennamen */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Einheitlicher Textblock */
.marke p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  min-height: 100px; /* gleiche Textboxhöhe */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


/* ========== WIDERRUFSBELEHRUNG ========== */
.widerruf-formular {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  margin-top: 20px;
  font-family: inherit;
  line-height: 1.6;
  font-size: 1rem;
}

.widerruf-formular p {
  margin-bottom: 12px;
}

/* Footer-Styling */
.site-footer {
  background-color: #003366; /* Dunkelblau */
  color: #ffffff;
  padding: 3rem 1rem 2rem;
  margin-top: 4rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info,
.footer-kontakt,
.footer-links {
  flex: 1 1 250px;
}

.footer-info p,
.footer-kontakt p,
.footer-links p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-kontakt a,
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
  transition: color 0.2s ease;
}

.footer-kontakt a:hover,
.footer-links a:hover {
  color: #aad4ff;
  text-decoration: underline;
}

.footer-info strong,
.footer-kontakt strong,
.footer-links strong {
  font-size: 1.1rem;
  color: #ffffff;
}

/* Copyright-Zeile */
footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #dddddd;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-info,
  .footer-kontakt,
  .footer-links {
    flex: 1 1 100%;
  }
}


/* ========== INTERAKTIVER CTA BEWERBUNG ========== */
.bewerbung-marken {
  background-color: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 3px solid #ccc;
}

.bewerbung-marken h3 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #222;
}

.bewerbung-marken p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #444;
}

.btn-bewerbung {
  display: inline-block;
  background-color: #0066cc;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-bewerbung:hover {
  background-color: #004a99;
}

/* ========== bike berater ========== */
.bike-berater {
  background: linear-gradient(to right, #fdfdfd, #f5f5f5);
  padding: 80px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.bike-berater .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.bike-berater h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #aa0000;
}

.bike-berater p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#beratungForm {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  text-align: left;
}

#beratungForm label {
  display: block;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #444;
}

#beratungForm select {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

#beratungForm select:focus {
  border-color: #aa0000;
  outline: none;
}

.bike-berater button {
  display: block;
  margin: 30px auto 0;
  background-color: #aa0000;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.bike-berater button {
  background: linear-gradient(to right, #aa0000, #cc3333);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background 0.3s ease;
}

.bike-berater button:hover {
  background: linear-gradient(to right, #880000, #bb2222);
  transform: scale(1.05);
}
.empfehlung-box {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.bike-berater button:hover {
  background-color: #880000;
}

.empfehlung-box {
  display: none;
  margin-top: 40px;
  background-color: #fff4f4;
  padding: 20px 30px;
  border-left: 6px solid #aa0000;
  border-radius: 6px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  color: #222;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Responsives Verhalten */
@media (max-width: 600px) {
  .bike-berater h2 {
    font-size: 1.5rem;
  }

  #beratungForm {
    padding: 20px;
  }

  .bike-berater button {
    width: 100%;
  }
}

/* ========== VERSICHERUNG ========== */
.versicherung-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.versicherung-section h2 {
  font-size: 2rem;
  color: #aa0000;
  margin-bottom: 10px;
}

.versicherung-section .intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.versicherungs-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.versicherung-box {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #aa0000;
  border-radius: 4px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.versicherung-box h3 {
  color: #aa0000;
  margin-bottom: 10px;
}

.beratung-hinweis {
  background: #fff4f4;
  padding: 25px;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
}

.beratung-hinweis h3 {
  color: #880000;
  margin-bottom: 10px;
}

.btn-sml {
  display: inline-block;
  margin-top: 15px;
  background-color: #aa0000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-sml:hover {
  background-color: #880000;
}
.accordion-item {
  max-width: 800px;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  background-color: #fff;
}

.accordion-toggle {
  width: 100%;
  background-color: #eaf4ff;
  border: none;
  text-align: left;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #d8ebff;
}

.accordion-toggle.active {
  background-color: #d0eaff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  padding: 0 24px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content p {
  font-size: 1rem;
  color: #444;
  margin: 16px 0;
}

.tarifvergleich-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  padding: 0 10px;
}



/* ========== leasing ========== */
/* === Allgemein === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header === */
.site-header {
  background-color: #f8f8f8;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #007bff;
}

/* === Leasing Einleitung === */
.leasing-intro {
  text-align: center;
  padding: 60px 20px 40px;
}

.leasing-intro h1 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.leasing-intro p {
  font-size: 1.2rem;
  color: #555;
}

/* === Vorteile Grid === */
.leasing-benefits {
  padding: 40px 0;
}

.leasing-benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit {
  background-color: #f2f7ff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.benefit h3 {
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.benefit p {
  color: #333;
}

/* === Vorteile als Liste === */
.leasing-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.leasing-benefits ul li {
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}

/* === Beratung === */
.leasing-beratung {
  background-color: #fdfdfd;
  padding: 60px 0;
  text-align: center;
}

.leasing-beratung h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.leasing-beratung p {
  max-width: 700px;
  margin: 0 auto;
}

/* === Schritte zum Leasing === */
.leasing-funktioniert {
  background-color: #f5faff;
  padding: 60px 0;
}

.leasing-funktioniert h2 {
  text-align: center;
  margin-bottom: 40px;
}

.leasing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e0e0e0;
}

.step h3 {
  font-size: 1.1rem;
  color: #007bff;
  margin-bottom: 10px;
}
/* === Leasingabschnitte Abstand === */
section {
  margin-bottom: 60px;
}

/* === Leasingpartner Bereich im Stil der Marken-Boxen === */
.leasing-partner {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.leasing-partner h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #003366;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-card {
  background: white;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-card img {
  width: auto;
  height: 60px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

.partner-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* === blogsection ===*/
/* === Versicherungseintrag ===*/
.blog-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.blog-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-left: 5px solid #aa0000;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  padding: 40px 30px;
  transition: box-shadow 0.3s ease;
}

.blog-article:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.blog-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.blog-icon {
  font-size: 2rem;
  margin-right: 10px;
  color: #aa0000;
}

.blog-article h2 {
  font-size: 1.8rem;
  color: #003366;
  margin: 0;
}

.blog-section .intro-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  text-align: left;
}

.blog-article h3 {
  font-size: 1.2rem;
  margin-top: 25px;
  color: #aa0000;
}

.blog-article p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .blog-section h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
    padding: 0 10px;
  }

  .blog-section .intro-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .blog-article article h3 {
    font-size: 1.1rem;
  }

  .blog-article article p {
    font-size: 0.95rem;
  }
}
/* === MOTORENVERGLEICH=== */
.motoren-vergleich {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.motoren-vergleich h2 {
  font-size: 2rem;
  color: #aa0000;
  text-align: center;
  margin-bottom: 10px;
}

.motoren-vergleich p.blog-date {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 30px;
}

.motoren-vergleich p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.05rem;
  color: #333;
}

.motoren-block {
  margin-bottom: 60px;
}

.motoren-block h3 {
  color: #222;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
}

.vergleichsbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.motoren-kachel {
  flex: 1 1 300px;
  background-color: #fff;
  border-left: 5px solid #aa0000;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s ease;
}

.motoren-kachel:hover {
  transform: translateY(-4px);
}

.motoren-kachel h4 {
  color: #aa0000;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.motoren-kachel ul {
  padding-left: 20px;
  margin: 0;
  color: #444;
}

.motoren-kachel ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.motoren-vergleich p:last-of-type {
  margin-top: 40px;
  font-style: italic;
  text-align: center;
  font-size: 1rem;
}

/* === Leasingpartner === */
/* === Grundlayout für Leasingseite === */
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #f9fbfe;
  margin: 0;
  padding: 0;
}

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

/* === Einleitung === */
.leasing-intro {
  text-align: center;
  padding: 60px 20px 40px;
}

.leasing-intro h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #003366;
}

.leasing-intro p {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

/* === Vorteile (Karten) === */
.leasing-benefits {
  padding: 60px 0;
}

.leasing-benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003366;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 1rem;
  color: #333;
}

/* === Vorteils-Liste === */
.leasing-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leasing-benefits ul li {
  background: #eaf4ff;
  padding: 12px 20px;
  border-left: 4px solid #0077cc;
  border-radius: 6px;
  font-size: 1rem;
}

/* === Beratungstext === */
.leasing-beratung {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.leasing-beratung h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #003366;
}

.leasing-beratung p {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === Schritte (Steps) === */
.leasing-funktioniert {
  background-color: #f2f8ff;
  padding: 60px 0;
}

.leasing-funktioniert h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #003366;
}

.leasing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.step:hover {
  transform: scale(1.02);
}

.step h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 10px;
}

.step p {
  color: #333;
}

/* === Partnerlogos === */
.leasing-partner {
  padding: 60px 0;
  background-color: #ffffff;
}

.leasing-partner h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003366;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 25px;
  align-items: center;
  justify-items: center;
}

.partner-grid a {
  background: #f4f4f4;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.partner-grid a:hover {
  background: #e0f0ff;
}

.partner-grid img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

/* ========== Google Rezensionen ========== */
.kundenstimmen-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.kundenstimmen-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #003366;
  text-align: center;
}

.rezensionen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.rezension-box {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rezension-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sterne {
  color: #ffc107;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.kunde {
  font-style: italic;
  margin-top: 15px;
  color: #666;
}

/*=== Datenschutz ===*/
/* Grundlegende Schrift und Farben */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #222;
}

/* Layout-Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  max-height: 50px;
}

nav a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #007f5f;
}

/* Datenschutzerklärung */
.privacy-section {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  margin-top: 2rem;
}

.privacy-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #007f5f;
  padding-bottom: 0.4rem;
}

.privacy-section h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #007f5f;
}

.privacy-section p,
.privacy-section ul,
.privacy-section li {
  margin-bottom: 1rem;
}

.privacy-section a {
  color: #007f5f;
  text-decoration: underline;
}

.privacy-section ul {
  padding-left: 1.2rem;
}

.privacy-section li {
  list-style: disc;
}

/* Responsive Verhalten */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin: 0.5rem 0;
    display: inline-block;
  }
}

/*=== Impressum ===*/
/* Allgemeine Basis */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #222;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  max-height: 50px;
}

nav a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #007f5f;
}

/* Impressum-Sektion */
.impressum-section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-top: 2rem;
  padding: 2rem;
}

.impressum-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #007f5f;
  border-bottom: 2px solid #007f5f;
  padding-bottom: 0.3rem;
}

.impressum-section p {
  margin-bottom: 1.2rem;
}

.impressum-section a {
  color: #007f5f;
  text-decoration: underline;
}

.impressum-section a:hover {
  text-decoration: none;
}




/*=== AGBs ===*/
/* AGB-Sektion */
.agb-section {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-top: 2rem;
  padding: 2rem;
}

.agb-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #007f5f;
  border-bottom: 2px solid #007f5f;
  padding-bottom: 0.3rem;
}

.agb-section h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.agb-section p {
  margin-bottom: 1.2rem;
  color: #222;
}

.agb-section a {
  color: #007f5f;
  text-decoration: underline;
}

.agb-section a:hover {
  text-decoration: none;
}

/*=== Wiederrufsbelehrung ===*/

/* Widerrufsbelehrung */
.widerruf-section {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-top: 2rem;
  padding: 2rem;
}

.widerruf-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #007f5f;
  border-bottom: 2px solid #007f5f;
  padding-bottom: 0.3rem;
}

.widerruf-section h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.widerruf-section h4 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #007f5f;
}

.widerruf-section p {
  margin-bottom: 1.2rem;
  color: #222;
}

.widerruf-section a {
  color: #007f5f;
  text-decoration: underline;
}

.widerruf-section a:hover {
  text-decoration: none;
}

/* Muster-Widerrufsformular */
.widerruf-formular {
  background-color: #f9f9f9;
  border-left: 4px solid #007f5f;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  border-radius: 4px;
}

.widerruf-formular p {
  margin-bottom: 1rem;
}

/* Cookies */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ccc;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  transition: transform 0.4s ease-in-out;
  transform: translateY(0%);
  font-family: Inter, sans-serif;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-content form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

#accept-cookies {
  align-self: flex-start;
  background: #d00000;
  color: white;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

#accept-cookies:hover {
  background: #a80000;
}
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  font-family: Inter, sans-serif;
}

.cookie-modal-content h3 {
  margin-top: 0;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

/*=== Footer ===*/
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-info,
.footer-kontakt,
.footer-links {
  flex: 1 1 200px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 10px;
  display: block;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #aaa;
}
