  :root {
    --primary: #1d75be;        /* eure Blau-Hauptfarbe */
    --primary-light: #e0f0fb;  /* sehr helles Blau auf Basis eures Blau */
    --dark: #1f2933;           /* kann bleiben oder durch ein dunkles Blau/Grau ersetzt werden */
    --text: #6d6f73;           /* euer Grau als Textfarbe */
    --muted: #9a9da3;          /* etwas helleres Grau für Secondary Text */
    --bg: #ffffff;
    --card-bg: #f5f7fa;
    --radius-lg: 18px;
    --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.06);
    --transition: 0.25s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Layout Helpers */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section {
      padding: 5rem 0;
    }

    main section {
    padding: 5rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    }

    /* Abwechselnde Hintergrundfarben für Sections im Main-Bereich */
    main section:nth-of-type(odd) {
    background: #ffffff;      /* Weiß */
    }

    main section:nth-of-type(even) {
    background: #f5f7fa;      /* leichtes Grau / sehr helles Blau */
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      color: var(--text);
      margin-bottom: 2.5rem;
      max-width: 560px;
    }

    /* Header / Navigation */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      color: var(--dark);
    }

    .logo img{
      display: flex;
      align-items: center;
      justify-content: left;
      width: 220px;
      padding: 10px 0;
     
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      font-size: 0.95rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.15rem;
      color: var(--text);
      transition: color var(--transition);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.2rem;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width var(--transition);
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a.active {
      color: var(--primary);
      font-weight: 600;
    }

    .nav-links a.active::after {
      width: 100%;
    }

    /* Mobile Nav */
    .nav-toggle {
      display: none;
      border: none;
      background: none;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--dark);
      margin: 4px 0;
      transition: var(--transition);
    }

    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 60px;
        right: 1.5rem;
        background: #ffffff;
        border-radius: 16px;
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: flex-start;
        min-width: 180px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
      }

      .nav-links.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-toggle {
        display: block;
      }
    }

    /* Hero / Einleitung */
    .hero {
      padding: 4rem 0 5rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: var(--primary-light);
      color: var(--dark);
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 0.8rem;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background-color: #22c55e;
    }

    .hero h1 {
      font-size: clamp(2.1rem, 3vw, 3rem);
      letter-spacing: -0.04em;
      color: var(--dark);
      margin-bottom: 1rem;
      line-height: 4rem
    }

    .hero-highlight {
      background: linear-gradient(90deg, var(--primary), #4f46e5);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero p {
      color: var(--text);
      max-width: 540px;
      margin-bottom: 1.7rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 1.8rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #2563eb);
      color: #f9fafb;
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(37, 99, 235, 0.6);
    }

    .btn-ghost {
      background: #f9fafb;
      border-color: rgba(148, 163, 184, 0.5);
      color: var(--dark);
    }

    .btn-ghost:hover {
      background: #e5e7eb;
    }

    .hero-meta {
  display: grid;
  grid-template-columns: 1fr;   /* immer untereinander */
gap: 0.7rem;
  margin-top: 1.2rem;
}

@media (max-width: 900px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }
}

.hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text);
}

.hero-meta-item i {
  color: var(--primary);         /* euer CI Blau */
  font-size: 1.05rem;
  margin-top: 0.15rem;           /* optisch mittig zur ersten Zeile */
  flex: 0 0 auto;
}


    .hero-meta strong {
      color: var(--dark);
      font-size: 1rem;
      display: block;
    }

    .hero-visual {
      position: relative;
    }

    .hero-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 1.6rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.25);
    }

    .hero-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 0.6rem;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .hero-stat {
      padding: 0.7rem 0.8rem;
      border-radius: 12px;
      background: var(--card-bg);
      font-size: 0.8rem;
    }

    .hero-stat strong {
      display: block;
      font-size: 1.1rem;
      color: var(--dark);
    }

    .hero-badge-floating {
      position: absolute;
      right: -8px;
      top: -10px;
      padding: 0.6rem 0.9rem;
      background: var(--primary);
      color: white;
      border-radius: 999px;
      font-size: 0.8rem;
      box-shadow: 0 14px 35px rgba(37, 99, 235, 0.7);
    }

    /* Über uns */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.2fr);
      gap: 2.5rem;
      align-items: center;
    }

    .about-image-wrapper {
      position: relative;
    }

    .about-image-main {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.3);
    }

    .about-image-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-tag {
      position: absolute;
      left: -12px;
      bottom: -16px;
      background: #ffffff;
      border-radius: 18px;
      padding: 0.9rem 1.1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.8rem;
    }

    .about-text p {
      margin-bottom: 1rem;
    }

    .about-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 0.7rem;
  padding-left: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.8rem; /* Platz für Icon */
  color: var(--text);
}

/* Icon vor jedem Listenelement */
.about-list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;              /* wichtig, sonst erscheint das Icon nicht */
  content: "\f058";              /* fa-circle-check */
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--primary);         /* CI Blau */
  font-size: 1.05rem;
}

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-tag {
        left: 12px;
      }
    }

 /* --- Services Grid (3 Cards) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Service Card bleibt modern wie vorher --- */
.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
  border-color: rgba(29, 117, 190, 0.65); /* CI Blau */
}

/* --- Überschrift im Card Stil --- */
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* --- Neue Service-Liste (wie vorher modern gestaltet) --- */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 0.65rem;

  font-size: 0.92rem;
  color: var(--text);
}

/* Jede Zeile: Icon links + Text rechts */
.service-list li {
  position: relative;
  padding-left: 1.55rem; /* Platz für Check */
  line-height: 1.45;
}

/* CI-Check vor jedem Punkt (ohne Font Awesome nötig) */
.service-list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;              /* wichtig, sonst erscheint das Icon nicht */
  content: "\f058";              /* fa-circle-check */
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--primary);         /* CI Blau */
  font-size: 1.05rem;
}


  /* --- Qualifikationen: 2-Spalten Layout --- */
.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .qualifications-grid {
    grid-template-columns: 1fr;
  }
}

.qualifications-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.qualifications-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.qualifications-text {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

/* --- Check-Liste (Haken) --- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  line-height: 1.45;
}

.check-list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;              /* wichtig, sonst erscheint das Icon nicht */
  content: "\f058";              /* fa-circle-check */
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--primary);         /* CI Blau */
  font-size: 1.05rem;
}

/* --- Bullet-Liste rechts --- */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

/* --- Trennlinie & Zitat --- */
.qualifications-divider {
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin: 1.2rem 0;
}

.qualifications-quote {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 600;
}


    /* Kontakt */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 2.2rem;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    .contact-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 1.8rem 1.6rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.25);
    }

    .contact-form {
      display: grid;
      gap: 1rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      font-size: 0.9rem;
    }

    .field label {
      font-weight: 500;
      color: var(--dark);
    }

    .field span {
      font-size: 0.75rem;
      color: var(--muted);
    }

    input,
    textarea {
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 0.6rem 0.7rem;
      font-family: inherit;
      font-size: 0.9rem;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
      background-color: #f9fafb;
    }

    input:focus,
    textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
      background-color: #ffffff;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-info {
      display: grid;
      gap: 1rem;
      font-size: 0.9rem;
    }

    .contact-row {
      display: flex;
      gap: 0.9rem;
    }

    .contact-row-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .contact-row strong {
      color: var(--dark);
      display: block;
    }

    /* Google Maps: erst nach Klick laden */
.map-wrapper {
  margin-top: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
}

.map-consent {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
  justify-content: center;
  padding: 1.2rem 1.2rem;
  background: var(--primary-light);
}

.map-consent-title {
  color: var(--dark);
  margin: 0;
}

.map-consent-text {
  color: var(--dark);
  font-size: 0.9rem;
  margin: 0;
  max-width: 520px;
}

.map-consent a {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-style: dotted;
}

.map-consent a:hover {
  text-decoration-style: solid;
}

.map-iframe {
  width: 100%;
  height: 230px;
  border: 0;
  display: block;
}


/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: none; /* wird per JS eingeblendet */
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__content {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--text);
}

.cookie-banner__text strong {
  color: var(--dark);
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: dotted;
}

.cookie-banner__text a:hover {
  text-decoration-style: solid;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.cookie-btn {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    justify-content: flex-end;
  }
}

    .contact-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.6rem;
    }

    .form-success {
      display: none;
      margin-top: 0.5rem;
      font-size: 0.85rem;
      color: #16a34a;
    }

    .form-error {
      display: none;
      margin-top: 0.5rem;
      font-size: 0.85rem;
      color: #dc2626;
    }


/* Checkbox im Kontaktformular */
.checkbox-field {
  margin-top: 0.2rem;
}

.checkbox-label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--primary); /* CI Blau */
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: dotted;
}

.checkbox-label a:hover {
  text-decoration-style: solid;
}


/* Impressum */


.page-imp{
      padding: 4.5rem 0;
    }

 .page-title {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--dark);
      margin-bottom: 0.6rem;
    }

    .page-subtitle {
      color: var(--muted);
      max-width: 700px;
      margin-bottom: 2.3rem;
    }

    /* Impressum Layout OHNE Box */
    .impressum {
      max-width: 760px;
      display: grid;
      gap: 1.25rem;
      font-size: 1rem;
    }

    .impressum h2 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--dark);
      margin-top: 0.8rem;
      margin-bottom: 0.2rem;
    }

    .impressum p strong {
      color: var(--dark);
    }

    .impressum a {
      color: var(--primary);
      text-decoration: underline;
      text-decoration-style: dotted;
    }

    .impressum a:hover {
      text-decoration-style: solid;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(148, 163, 184, 0.3);
      padding: 1.4rem 0 1.2rem;
      font-size: 0.8rem;
      color: var(--muted);
      background: #f9fafb;
      margin-top: 2rem;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-links a {
      text-decoration: underline;
      text-decoration-style: dotted;
    }