:root {
    --navy: #1a2e4a; --teal: #4ab8b8; --teal-light: #6dcfcf; --teal-dark: #35a0a0;
    --white: #ffffff; --light-bg: #f4f7fb; --text-muted: #7a90aa;
    --shadow: 0 8px 40px rgba(26,46,74,0.12);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 5vw;
    background: rgba(255,255,255,1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26,46,74,0.10);
    box-shadow: 0 2px 20px rgba(26,46,74,0.08);
    transition: box-shadow .3s, padding .3s, gap .3s;
  }
  nav.scrolled { box-shadow: 0 4px 28px rgba(26,46,74,.14); padding: 8px 5vw; }
  nav .logo img { height: 58px; transition: height .3s; }
  nav.scrolled .logo img { height: 48px; }
  nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
  nav ul li a {
    text-decoration: none; color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    position: relative; padding-bottom: 4px; transition: color .2s, font-size .3s;
  }
  nav ul li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--teal); transition: width .3s; }
  nav ul li a:hover { color: var(--teal); }
  nav ul li a:hover::after { width: 100%; }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 4px; transition: background .2s !important; }
  .nav-cta:hover { background: var(--teal) !important; }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh; background: #06111a;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden; padding: 120px 5vw 80px;
  }
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; pointer-events: none; z-index: 0;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(6,17,26,.65) 0%, rgba(6,17,26,.75) 55%, rgba(6,17,26,.92) 100%);
    z-index: 1;
  }
  .hero-overlay-teal {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 55%, rgba(74,184,184,.10) 0%, transparent 65%);
    z-index: 2;
  }
  #hero > *:not(.hero-video):not(.hero-overlay):not(.hero-overlay-teal) { position: relative; z-index: 3; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(74,184,184,.15); border: 1px solid rgba(74,184,184,.35);
    color: var(--teal-light); font-size: .8rem; letter-spacing: .18em;
    text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
    opacity: 0; animation: fadeUp .7s .3s forwards;
  }
  .hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

  #hero h1 {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.8rem,7vw,6rem);
    font-weight: 800; color: var(--white); line-height: 1; text-transform: uppercase;
    letter-spacing: -.01em; max-width: 900px; opacity: 0; animation: fadeUp .7s .5s forwards;
  }
  #hero h1 span { color: var(--teal); }
  #hero p.lead {
    max-width: 580px; margin: 28px auto 0; color: rgba(255,255,255,.65);
    font-size: 1.15rem; font-weight: 300; line-height: 1.7;
    opacity: 0; animation: fadeUp .7s .7s forwards;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 44px;
    opacity: 0; animation: fadeUp .7s .9s forwards;
  }
  .btn-primary {
    background: var(--teal); color: var(--white); border: none;
    padding: 16px 38px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(74,184,184,.35);
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,184,184,.45); }
  .btn-ghost {
    background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3);
    padding: 16px 38px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: border-color .2s, color .2s, background .2s;
  }
  .btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: rgba(74,184,184,.06); }
  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.35); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  }
  .scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--teal)); animation: scrollLine 2s ease-in-out infinite; }
  @keyframes scrollLine { 0%,100%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} }

  /* ── STATS ── */
  #stats { background: var(--navy); padding: 60px 5vw; display: grid; grid-template-columns: repeat(4,1fr); }
  .stat-item { display: flex; flex-direction: column; align-items: center; padding: 40px 24px; border-right: 1px solid rgba(74,184,184,.15); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--teal); line-height: 1; }
  .stat-label { color: rgba(255,255,255,.5); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; }

  /* ── SHARED ── */
  section { padding: 100px 5vw; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; color: var(--navy); text-transform: uppercase; line-height: 1.05; max-width: 680px; }
  .section-title span { color: var(--teal); }
  .section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin-top: 16px; }
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── SERVICES ── */
  #services { background: var(--light-bg); }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
  .service-card {
    background: var(--white); border-radius: 8px; padding: 40px 32px;
    box-shadow: 0 2px 16px rgba(26,46,74,.06); border-top: 3px solid transparent;
    transition: border-color .3s, transform .3s, box-shadow .3s; position: relative; overflow: hidden;
  }
  .service-card::before { content: ''; position: absolute; bottom: 0; right: 0; width: 100px; height: 100px; background: radial-gradient(circle at bottom right, rgba(74,184,184,.08), transparent 70%); }
  .service-card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: var(--shadow); }
  .service-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(74,184,184,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.5rem; }
  .service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); margin-bottom: 12px; }
  .service-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }
  .service-card .arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-top: 24px; text-decoration: none; transition: gap .2s; }
  .service-card .arrow:hover { gap: 12px; }

  /* ── ABOUT ── */
  #about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual { position: relative; aspect-ratio: 1/1; max-width: 500px; }
  .about-bg-rect { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, #1c4060 100%); border-radius: 12px; transform: rotate(-3deg); }
  .about-main-rect { position: absolute; inset: 16px; background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .about-main-rect .big-icon { font-size: 5rem; opacity: .8; }
  .about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--white); border-radius: 12px; padding: 20px 24px; box-shadow: var(--shadow); text-align: center; }
  .about-badge .num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
  .about-badge .lbl { font-size: .75rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }
  .about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
  .about-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--text-muted); font-size: .98rem; line-height: 1.6; list-style: none; }
  .about-list li::before { content: ''; flex-shrink: 0; margin-top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

  /* ── PROCESS ── */
  #process { background: var(--navy); }
  #process .section-title { color: var(--white); }
  #process .section-sub { color: rgba(255,255,255,.45); }
  .steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 60px; position: relative; }
  .steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); }
  .step { padding: 0 24px; text-align: center; }
  .step-num { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--teal); background: var(--navy); position: relative; z-index: 1; transition: background .3s, color .3s; }
  .step:hover .step-num { background: var(--teal); color: var(--white); }
  .step h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: .06em; margin-bottom: 10px; }
  .step p { color: rgba(255,255,255,.4); font-size: .88rem; line-height: 1.65; }

  /* ── FLEET ── */
  #fleet { background: var(--light-bg); }
  .fleet-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 60px; }
  .fleet-card { border-radius: 10px; overflow: hidden; background: var(--white); box-shadow: 0 2px 16px rgba(26,46,74,.07); display: flex; align-items: stretch; transition: transform .3s, box-shadow .3s; }
  .fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .fleet-icon-wrap { width: 100px; flex-shrink: 0; background: linear-gradient(135deg, var(--navy), #1c4060); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
  .fleet-info { padding: 24px; }
  .fleet-info h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; color: var(--navy); letter-spacing: .05em; }
  .fleet-info p { color: var(--text-muted); font-size: .9rem; margin-top: 6px; line-height: 1.6; }
  .fleet-tag { display: inline-block; margin-top: 10px; padding: 4px 12px; background: rgba(74,184,184,.12); color: var(--teal-dark); border-radius: 100px; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

  /* ── CTA ── */
  #cta { background: linear-gradient(135deg, var(--navy) 0%, #0f2540 100%); text-align: center; padding: 120px 5vw; position: relative; overflow: hidden; }
  #cta::before { content: ''; position: absolute; inset: 0; opacity: .04; background: repeating-linear-gradient(45deg, var(--teal) 0, var(--teal) 1px, transparent 0, transparent 50%); background-size: 16px 16px; }
  #cta h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem,5vw,3.8rem); font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1.05; max-width: 700px; margin: 0 auto 20px; }
  #cta h2 span { color: var(--teal); }
  #cta p { color: rgba(255,255,255,.5); font-size: 1.05rem; max-width: 480px; margin: 0 auto 48px; }
  .cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

  /* ── CONTACT ── */
  #contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .ci-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: rgba(74,184,184,.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .ci-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
  .ci-val { font-size: .98rem; color: var(--navy); font-weight: 500; margin-top: 2px; }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field label { font-size: .8rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
  .form-field input, .form-field textarea, .form-field select { padding: 13px 16px; border: 1.5px solid #e2e8f0; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: .95rem; color: var(--navy); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(74,184,184,.12); }
  .form-field textarea { resize: vertical; min-height: 120px; }

  /* ── FOOTER ── */
  footer { background: #0a1929; padding: 60px 5vw 32px; border-top: 1px solid rgba(74,184,184,.1); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-brand img { height: 38px; margin-bottom: 16px; opacity: 1; }
  .footer-brand p { color: rgba(255,255,255,.35); font-size: .9rem; line-height: 1.7; max-width: 320px; }
  .footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,.4); font-size: .9rem; text-decoration: none; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--teal); }
  .footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.25); font-size: .82rem; }

  /* ── LEGAL CONTENT (Impressum & Datenschutz) ── */
  #page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2540 100%);
    padding: 180px 5vw 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #page-header::before {
    content: ''; position: absolute; inset: 0; opacity: .04;
    background: repeating-linear-gradient(45deg, var(--teal) 0, var(--teal) 1px, transparent 0, transparent 50%);
    background-size: 16px 16px;
  }
  #page-header h1 {
    position: relative; z-index: 2;
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .02em;
  }
  #page-header h1 span { color: var(--teal); }

  #legal-content { padding: 80px 5vw; max-width: 1000px; margin: 0 auto; }
  .legal-block { margin-bottom: 40px; }
  .legal-block h2 {
    font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px;
    padding-bottom: 8px; border-bottom: 2px solid rgba(74,184,184,.2);
  }
  .legal-block h3 { font-size: 1.1rem; font-weight: 600; margin-top: 24px; margin-bottom: 8px; color: var(--navy); }
  .legal-block p, .legal-block a, .legal-block ul {
    color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 12px;
    overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;
  }
  .legal-block ul { margin-left: 20px; }
  .legal-block a { color: var(--teal-dark); text-decoration: none; font-weight: 500; transition: color .2s; }
  .legal-block a:hover { color: var(--navy); text-decoration: underline; }

  /* ── RESPONSIVE ── */
  
  /* Tablets & kleine Laptops (bis 1024px) - HIER IST DER FIX FÜR DEN LANDSCAPE-MODUS */
  @media (max-width: 1024px) {
    /* Navigation rückt etwas enger zusammen und verhindert Umbruch */
    nav { padding: 10px 3vw; }
    nav ul { gap: 12px; }
    nav ul li a { 
      font-size: 0.9rem; 
      white-space: nowrap; /* Das verhindert das unschöne Umbrechen von "ÜBER UNS" */
    }
    .nav-cta { padding: 8px 14px !important; font-size: 0.9rem !important; }
    
    /* Layout wird zweispaltig oder einspaltig */
    #stats { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(74,184,184,.12); }
    .stat-item:nth-child(even) { border-right: none; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    #about { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { max-width: 100%; aspect-ratio: 16/9; }
    
    .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps::before { display: none; } /* Die Verbindungslinie wird ausgeblendet */
    
    #contact { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

/* Smartphones (bis 768px) - PORTRAIT MODUS */
  @media (max-width: 768px) {
    /* Menü: Sehr flach und kompakt */
    nav {
      flex-direction: column;
      padding: 10px 5vw; /* Weniger Abstand oben/unten */
      gap: 6px; /* Kaum Lücke zwischen Logo und Links */
    }
    nav.scrolled { padding: 6px 5vw; }
    
    nav .logo img { height: 40px; } /* Minimalistisches Logo */
    nav.scrolled .logo img { height: 32px; }
    
    nav ul {
      flex-direction: row;
      flex-wrap: wrap; /* Erlaubt weichen Umbruch bei ganz schmalen Handys */
      justify-content: center;
      gap: 6px 12px; /* Sehr enge Abstände zwischen den Links */
    }
    nav ul li a { 
      font-size: 0.85rem; /* Dezentere Schriftgröße */
    }
    .nav-cta { 
      padding: 5px 10px !important; 
      font-size: 0.85rem !important; 
    }

    /* Layout bricht komplett auf 1 Spalte um */
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .fleet-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    /* Hero-Bereich an flacheres Menü anpassen */
    #hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); } 
    #hero { padding: 130px 5vw 60px; } 

    /* Page-Header für Impressum & Datenschutz anpassen */
    #page-header { padding: 130px 5vw 50px; }

    /* Lange Titel (Impressum/Datenschutz) auf dem Handy verkleinern */
    #page-header h1 { 
      font-size: 1.8rem !important; /* Erlaubt dem Text, noch etwas kleiner zu werden */
      hyphens: auto; /* Erlaubt dem Browser im Notfall Silbentrennung */
    }

    /* ── NEUER CODE FÜR DEN FOOTER ── */
    /* Footer-Links auf dem Handy zentrieren und nebeneinander legen */
    .footer-col h5 {
      text-align: center !important; 
    }
    .footer-col ul {
      display: flex !important;
      flex-direction: row !important; 
      flex-wrap: wrap !important; 
      justify-content: center !important; 
      gap: 10px 20px !important; 
    }
  }

/* ── VERBESSERTER & FARBLICH ANGEPASSTER COOKIE BANNER ── */
.cookie-container {
  position: fixed;
  bottom: -100%; /* Startet unsichtbar außerhalb des Bildschirms */
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95); /* Leicht transparentes Weiß */
  backdrop-filter: blur(10px); /* Blur-Effekt wie bei der Navigationsleiste */
  box-shadow: 0 -10px 40px rgba(26, 46, 74, 0.1); /* Weicher Schatten nach oben */
  z-index: 9999; /* Sehr hoch, damit er über allem liegt */
  padding: 25px 5vw;
  transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Sanfteres Einfahren */
  border-top: 2px solid rgba(74, 184, 184, 0.3); /* Subtile Teal-Linie oben */
}

.cookie-container.show {
  bottom: 0; /* Erscheint am unteren Rand */
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.cookie-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--navy); /* Dunkelblaue Schrift */
  line-height: 1.6;
  margin: 0;
}

.cookie-content a {
  color: var(--teal); /* Teal für Links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.cookie-content a:hover {
  color: var(--teal-dark);
  border-bottom: 1px solid var(--teal-dark);
}

.cookie-btns {
  display: flex;
  gap: 15px;
  flex-shrink: 0; /* Verhindert, dass die Buttons schrumpfen */
}

/* Gemeinsame Button-Styles */
.cookie-btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

/* Akzeptieren-Button (Primary Teal) */
.cookie-btn.accept {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74, 184, 184, 0.2);
}

.cookie-btn.accept:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 184, 184, 0.3);
}

/* Ablehnen-Button (Ghost Navy) */
.cookie-btn.decline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(26, 46, 74, 0.2);
}

.cookie-btn.decline:hover {
  background: rgba(26, 46, 74, 0.05);
  border-color: rgba(26, 46, 74, 0.5);
  transform: translateY(-2px);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .cookie-container {
    padding: 20px 5vw;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cookie-btns {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  
  .cookie-btn {
    flex: 1; /* Buttons teilen sich den Platz auf dem Handy */
    padding: 10px 15px;
    font-size: 0.85rem;
    max-width: 150px; /* Verhindert zu breite Buttons */
  }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 30, 0.95); /* Dunkler Teal-Ton */
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
}
.modal-content {
    background: #1a1a1a;
    border: 1px solid #008080; /* Teal Border */
    padding: 40px;
    border-radius: 5px;
    text-align: center;
    max-width: 450px;
    color: white;
    font-family: 'Barlow', sans-serif;
}
.modal-content h2 { color: #008080; text-transform: uppercase; margin-bottom: 15px; }
.modal-content p { margin-bottom: 25px; font-weight: 300; }