/* Grundstruktur */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #0d0d0d;
  }
  
  .hotline-banner {
    background: #ff1a1a;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1001;
  }
  
  .hotline-banner a {
    color: #fff;
    text-decoration: underline;
  }
  
  h1, h2, h3 {
    text-align: center;
    margin-top: 1.5rem;
    color: #0d0d0d;
  }
  
  p {
    line-height: 1.6;
    margin: 0.5rem 0;
  }
  
  /* Navigation */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #174ce6;
    color: white;
    position: sticky;
    top: 2.5rem; /* unterhalb der Hotline */
    z-index: 1000;
  }
  
  .navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
  }
  
  .navbar .logo img {
    height: 30px;
  }
  
  .nav-links a {
    color: white;
    margin: 0 0.6rem;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .call-nav {
    background: #00c853;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  /* Hero Section */
  .hero {
    background: #e6f0ff;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .cta-button {
    display: inline-block;
    background: #174ce6;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #0d3bcf;
  }
  
  .cta-info {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #333;
  }
  
  .cta-info a {
    color: #174ce6;
    text-decoration: underline;
  }
  
  /* Leistungen */
  #leistungen .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    justify-items: center;
    align-items: start;
  }
  
  .card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    padding: 1rem;
    width: 100%;
    max-width: 320px;
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  
  /* Kundenstimmen */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 2rem;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 1rem;
  }
  
  .stars {
    color: gold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  /* Vertrauen */
  .trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
  }
  
  .trust-item {
    text-align: center;
    max-width: 160px;
  }
  
  .trust-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.3rem;
  }
  
  /* Kontaktformular */
  form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  input, textarea {
    padding: 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  button {
    background: #174ce6;
    color: white;
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background: #0d3bcf;
  }
  
  /* Map */
  .map-container {
    margin: 2rem auto;
    text-align: center;
    max-width: 480px;
  }
  
  .map-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  /* Impressum & Datenschutz */
  .impressum, .datenschutz {
    padding: 2rem 1rem;
    background: #f2f2f2;
    text-align: center;
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer {
    background: #174ce6;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
  }
  
  .footer a {
    color: #fff;
    text-decoration: underline;
    margin: 0 0.5rem;
  }
  
  /* Floating Call Button */
  .call-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00c853;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
  }
  
  .call-floating img {
    width: 24px;
    height: 24px;
  }
  
  @media (max-width: 768px) {
    .call-floating {
      display: block;
    }
  }
  