/* ========== 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;
}

/* ========== INTRO-ABSCHNITT NACH HERO ========== */
.intro-text {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #444;
  text-align: center;
}
/*==== Instagram Vorstellung ====*/
/* ---------- Social Highlights ---------- */
.social-highlights {
  --sh-gap: 16px;
  --sh-radius: 16px;
  --sh-border: #ececec;
  --sh-bg: #f8f8f8;
  --sh-badge: #efefef;
  --sh-btn: #111;
  --sh-btn-text: #fff;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.sh-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sh-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.sh-btn {
  background: var(--sh-btn);
  color: var(--sh-btn-text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.sh-btn:hover {
  opacity: 0.9;
}

.sh-grid {
  display: grid;
  gap: var(--sh-gap);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.sh-card {
  display: block;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sh-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.sh-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: var(--sh-bg);
}

.sh-meta {
  padding: 12px;
}

.sh-badge {
  display: inline-block;
  font-size: 0.72rem;
  background: var(--sh-badge);
  border-radius: 999px;
  padding: 3px 9px;
  margin-bottom: 6px;
}

.sh-meta p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

@media (prefers-reduced-motion: no-preference) {
  .sh-card {
    will-change: transform;
  }
}

/* ---------- Hero-Teaser ---------- */
.social-hero {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.sh-hero-link {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.sh-hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.sh-hero-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: saturate(120%) blur(2px);
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.sh-hero-overlay strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.sh-hero-overlay span {
  font-size: 0.95rem;
  opacity: 0.95;
}

/*=== Sponsoring Abteil ====*/
.sponsoring {
  --sp-gap: 18px;
  --sp-radius: 16px;
  --sp-border: #e9e9e9;
  --sp-bg: #fafafa;
  --sp-text: #111;
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 20px;
  color: var(--sp-text);
}

.sp-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.sp-head p {
  margin: 0 0 18px;
  opacity: .9;
}

.sp-grid {
  display: grid;
  gap: var(--sp-gap);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.sp-card {
  display: block;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.sp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  border-color: #ddd;
}

.sp-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
  background: var(--sp-bg);
  border-radius: 12px;
}

.sp-meta {
  padding: 10px 4px 2px;
}

.sp-meta strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.sp-meta span {
  display: block;
  font-size: .9rem;
  opacity: .85;
  margin-top: 2px;
}

.sp-cta {
  margin-top: 20px;
  text-align: center;
}

.sp-cta a {
  font-weight: 600;
  text-underline-offset: 3px;
}


/*===== Aktionstag Nettetal Index ====*/
.aktionstag-teaser { --bg:#0a0a0a; --card:#111; --muted:#777; --brand:#1fb981; --ring: #1fb98133;
  --text:#fff; --ghost:#e8e8e8; --border:#262626; --radius:1.25rem; --shadow:0 10px 30px rgba(0,0,0,.25);
  color: var(--text); background: linear-gradient(180deg,#0b0b0b, #0f0f0f); padding: clamp(16px,3vw,28px);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: clip;
}
.aktionstag-teaser .atk-wrap { display: grid; gap: clamp(16px,2.5vw,28px);
  grid-template-columns: 1.2fr 1.8fr; align-items: stretch;
}
@media (max-width: 900px){ .aktionstag-teaser .atk-wrap { grid-template-columns: 1fr; } }

.atk-media { position: relative; border-radius: var(--radius); overflow: hidden; background: #0d0d0d; border:1px solid var(--border); }
.atk-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.atk-badge { position:absolute; left:12px; top:12px; background: var(--brand); color:#061a13; padding:.4rem .7rem;
  font-weight:700; border-radius:999px; box-shadow:0 6px 20px var(--ring); font-size:.85rem;
}

.atk-content { display:flex; flex-direction:column; gap:16px; background: var(--card); border:1px solid var(--border);
  border-radius: var(--radius); padding: clamp(16px,2.5vw,24px);
}

.atk-title { font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.15; margin: 0; }
.atk-title span { color: var(--brand); }

.atk-meta { display:flex; flex-wrap:wrap; gap:10px 16px; align-items:center; justify-content:space-between; }
.atk-loc { margin:0; display:flex; align-items:center; gap:.5rem; color:#ddd; }
.atk-ico { width:20px; height:20px; fill: var(--brand); flex:0 0 auto; }

.atk-countdown { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.atk-timer { background:#0c1411; border:1px dashed var(--ring); padding:.5rem .7rem; border-radius:.75rem; font-variant-numeric: tabular-nums; }
.atk-timer[data-state="idle"] { opacity:.6; }
.atk-ics { appearance:none; border:1px solid var(--brand); background:transparent; color:var(--brand);
  padding:.55rem .8rem; border-radius:.7rem; cursor:pointer; font-weight:600;
}
.atk-ics[disabled]{ opacity:.5; cursor:not-allowed; }

.atk-accordion summary { cursor: pointer; list-style:none; position:relative; padding:.7rem 2.5rem .7rem 1rem; border:1px solid var(--border);
  border-radius:.8rem; user-select:none; background:#0e0e0e; transition: background .2s ease;
}
.atk-accordion summary::marker { content: ""; }
.atk-accordion[open] summary { background:#111; }
.atk-accordion summary::after { content:"▾"; position:absolute; right:.9rem; top:50%; transform: translateY(-50%); }
.atk-list { margin:.8rem 0 0; padding-left: 1.2rem; display:grid; gap:.35rem; }
.atk-list li { color:#eaeaea; }

.atk-cta { display:flex; flex-wrap:wrap; gap:10px; margin-top: 4px; }
.atk-btn { display:inline-flex; align-items:center; justify-content:center; padding:.7rem 1rem; border-radius:.8rem;
  text-decoration:none; background: var(--brand); color:#062016; font-weight:700; border:1px solid transparent;
}
.atk-btn.ghost { background: transparent; color: var(--ghost); border-color:#3a3a3a; }
.atk-btn:hover { filter: brightness(1.03); }

.atk-mapbox { margin-top: 8px; }
.atk-map-consent { appearance:none; border:1px solid #2f2f2f; background:#0d0d0d; color:#e7e7e7; padding:.6rem .9rem; border-radius:.6rem; cursor:pointer; }
.atk-map-consent[disabled]{ opacity:.6; cursor:not-allowed; }
.atk-map-embed { margin-top:10px; border-radius:.8rem; overflow:hidden; border:1px solid var(--border); background:#0b0b0b; }
.atk-privacy-note { margin:.35rem 0 0; color: var(--muted); font-size:.9rem; }

.atk-note { margin-top: 6px; color:#d6f5e8; background:#082318; border:1px solid var(--ring); padding:.6rem .8rem; border-radius:.6rem; }

/* Motion respect */
@media (prefers-reduced-motion: reduce){
  .aktionstag-teaser, .atk-media img, .atk-btn, .atk-accordion summary { transition: none !important; animation: none !important; }
}


/*===== Fahrrad des Monats ====*/
.bike-of-the-month {
  padding: 3rem 1.5rem;
  background-color: #fff;
  border-top: 5px solid #009900;
  margin: 3rem 0;
}

.bike-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.bike-image {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background-color: #009900;
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 6px;
}

.bike-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.bike-image img:hover {
  transform: scale(1.04);
}

.bike-details {
  max-width: 500px;
}

.bike-details h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: left;
}

.price-box {
  background-color: #f9fff9;
  border: 2px solid #009900;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.old-price {
  text-decoration: line-through;
  color: #777;
  margin-right: 0.8rem;
}

.new-price {
  color: #d60000;
  font-weight: bold;
  font-size: 2rem;
}

.savings {
  color: #009900;
  font-size: 1rem;
  font-weight: 600;
}

.bike-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.target-group, .features {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
  color: #444;
}

.bike-button {
  display: inline-block;
  background-color: #009900;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.bike-button:hover {
  background-color: #007700;
  transform: scale(1.02);
}

.email-button {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .bike-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }
  .bike-details h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  .price-box, .bike-details {
    width: 100%;
    padding: 0 0.5rem;
  }
  .bike-button {
    width: 100%;
    text-align: center;
  }
  .badge {
    font-size: 0.75rem;
  }
}



/* ========== 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;
}
.blog-post.rueckruf-cube {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.blog-post.rueckruf-cube h1 {
  font-size: 1.8rem;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.blog-post.rueckruf-cube h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #444;
}

.blog-post.rueckruf-cube p {
  margin-bottom: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.blog-post.rueckruf-cube ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.blog-post.rueckruf-cube li {
  margin-bottom: 0.6rem;
}

.blog-box.kontakt-box {
  background-color: #f3f9f4;
  border-left: 4px solid #4caf50;
  padding: 1rem;
  margin: 2rem 0;
  font-weight: 500;
}

.blog-box.kontakt-box a {
  color: #1e88e5;
  text-decoration: none;
}

@media (max-width: 600px) {
  .blog-post.rueckruf-cube {
    padding: 0.8rem;
  }

  .blog-post.rueckruf-cube h1 {
    font-size: 1.5rem;
  }

  .blog-post.rueckruf-cube h2 {
    font-size: 1.1rem;
  }
}
.referenz-nettetal {
  background-color: #f4f4f4;
  padding: 4rem 1rem;
}

.referenz-nettetal .container {
  max-width: 1200px;
  margin: 0 auto;
}

.referenz-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.referenz-bild {
  flex: 1 1 400px;
  text-align: center;
}

.referenz-bild img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.referenz-text {
  flex: 1 1 500px;
}

.referenz-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.referenz-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

/* Responsives Layout */
@media (max-width: 768px) {
  .referenz-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .referenz-text {
    padding: 0 1rem;
  }
}

/* === Bike-Fitting Abschnitt === */
.bikefitting {
  background-color: #ffffff;
  padding: 4rem 1rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.bikefitting .container {
  max-width: 1000px;
  margin: 0 auto;
}

.bikefitting h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.bikefitting-text h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.bikefitting-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Optional: Responsive Anpassung */
@media (max-width: 768px) {
  .bikefitting h2 {
    font-size: 1.6rem;
  }

  .bikefitting-text h3 {
    font-size: 1.1rem;
  }
}
.blog-search {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-search input {
  width: 90%;
  margin-top: 1rem;
  max-width: 500px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  outline: none;
  transition: all 0.3s ease;
}

.blog-search input:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}



/* ========== KARRIERE-BEREICH ========== */
.search-hint {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.karriere-search {
  text-align: center;
  margin: 2rem 0;
}

.karriere-search input {
  width: 90%;
  max-width: 500px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  outline: none;
  transition: all 0.3s ease;
}

.karriere-search input:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.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: 100px;
}

.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 ========== */
.hero-karriere {
  position: relative;
  background-image: url("img/herokarriere.jpg");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-karriere::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dunkle Überlagerung für bessere Lesbarkeit */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-hero {
  background-color: #fff;
  margin-top: 1.5rem;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #eaeaea;
}

.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;
}

/* === Ausbildung & Duales Studium === */
.karriere-ausbildung {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.karriere-ausbildung .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.karriere-ausbildung h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.karriere-ausbildung .intro-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #444;
}

.karriere-boxen {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.karriere-box {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 360px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.karriere-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.karriere-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.btn-sml {
  display: inline-block;
  margin-top: 2rem;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-sml:hover {
  background-color: #444444;
}

/* Responsives Verhalten */
@media (max-width: 768px) {
  .karriere-boxen {
    flex-direction: column;
    align-items: center;
  }

  .karriere-box {
    max-width: 100%;
  }
}


/* ========== 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;
  margin-top: 80px;
}

.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;
}
