  :root {
    --green:      #2ecc71;
    --green-dark: #1a9e53;
    --green-pale: #e8fdf1;
    --ink:        #111a14;
    --ink-soft:   #3a4a3e;
    --muted:      #7a8c80;
    --border:     #ddeee3;
    --white:      #ffffff;
    --card-bg:    #f7fcf9;
    --radius-lg:  18px;
    --font-main: 'DM Sans', sans-serif;
  }

/* Grundlayout */
body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  color: var(--color-neutral-dark);
  background-color: var(--color-gray-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}


/* Typografie */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
 
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; color: var(--color-primary); }

p {
  color: var(--color-neutral-dark);
  font-weight: 400;
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}



/* Buttons */
button {
background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 14px 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
}

button:hover {
  background-color: black;
  color: white;
  transform: translateY(-2px);
}

/* Karten / Container */
.card {
  background: white;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  margin: 1rem 0;
}

/* Utility-Klassen */
.text-center { text-align: center; }
.text-muted { color: var(--color-gray-modern); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.bg-primary { background-color: var(--color-primary); color: white; }


.streetview-container {
      width: 100%;
      height: 400px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      border: 3px solid #ddd;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .btn_zurück {
    display: flex
;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #cccbcb;
    border-radius: 25px;
    background: linear-gradient(135deg, #f9f9f9, #f1f1f1);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s 
ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn_zurück a {
    color: black;
    text-decoration: none;
}
.btn_zurück:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.11);
}


input[type="text"], input[type="email"], input[type="password"], select {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
}
.hotline {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  padding: 10px;
  background-color: black;
  color: white !important;
   position: relative;
  width: 100vw;       /* volle Viewport-Breite */
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* zieht nach links raus */
  margin-right: -50vw; /* zieht nach rechts raus */
  margin-top: 50px;
}
.hotline a {
  color: white;
  font-weight: 600;
}










.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a9e53;
    margin-bottom: 24px;
}
.section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--green);
    border-radius: 2px;
  }


  .site-footer {
    background: #0d1510;
    font-family: 'DM Sans', sans-serif;
  }
 
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 32px;
  }
 
  /* Top row */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
 
  .footer-logo img {
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: 14px;
  }
 
  .footer-logo p {
    font-size: .87rem;
    color: rgba(255,255,255,.4);
    line-height: 1.65;
    max-width: 240px;
  }
 
  /* Link groups */
  .footer-links {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
  }
 
  .footer-group h4 {
    font-family: 'Syne', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    margin-bottom: 16px;
  }
 
  .footer-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0;
  }
 
  .footer-group ul li a {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .18s;
  }
  .footer-group ul li a:hover { color: #2ecc71; }
 
  /* Bottom row */
  .footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
 
  .footer-copy {
    font-size: .8rem;
    color: rgba(255,255,255,.25);
  }
 
  /* Social icons */
  .footer-socials {
    display: flex;
    gap: 8px;
  }
 
  .footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
  }
  .footer-socials a:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
  }
 
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: 36px; }
    .footer-logo p { max-width: 100%; }
    .footer-links { gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
    input, textarea, select {
    font-size: 16px !important;
}
  }