body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* Header Container */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Roboto', sans-serif;
  color: #333333;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  height: 80px;
  width: auto;
}

.nav {
  display: flex;
  gap: 20px;
}

/* Grundfarbe und keine Unterstreichung */
.header .nav a:link,
.header .nav a:visited {
  color: #333333;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

/* Hover- und aktiver Zustand */
.header .nav a:hover,
.header .nav a.active {
  background: rgba(74, 144, 226, 0.1);
  color: #4a90e2;
}

/* Dropdown-Menü */
.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 200px;
    flex-direction: column;
    padding-top: 5px;
}

.dropdown-content li {
    list-style: none;
    padding: 0;
}

.dropdown-content li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content li a:hover {
    background-color: #4a90e2;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

/* Hauptinhalt */
main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
    text-align: left;
}

main h1, main h2, main h3, main p {
    text-align: left;
}
.center-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100%;
}

/* Formular Styling */
form {
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4a90e2;
}

/* Container für den Seiteninhalt */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    padding: 20px;
    border: none;
    background-color: transparent;
    box-shadow: none;
    max-width: 1000px;
    margin: 20px auto;
}

/* Zusätzlicher Innenabstand für Inhalte */
.page-container > .content {
    padding: 20px;
    width: 100%;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
}

footer p {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0 10px;
}

footer a:hover {
    color: #ddd;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#page-wrapper {
  min-height: 100vh;         /* 100% der Viewport-Höhe */
  display: flex;             /* Flexbox für Layout */
  flex-direction: column;    /* Ordnet Header, Main und Footer vertikal an */
}

main {
  flex: 1;                   /* Hauptinhalt dehnt sich aus und nimmt den freien Raum ein */
}

/* Galerie Styling */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 18px;
    text-align: center;
}

.gallery-link {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    background-color: #4a90e2;
    padding: 10px 20px; 
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.gallery-link:hover {
    background-color: #4a90e2;
    transform: scale(1.05);
}

.btn, .gallery-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 18px;
    display: inline-block;
    background-color: #4a90e2;
}

/* ================= FAQ Styles ================= */

/* FAQ Container */
#faq {
  max-width: 600px; /* Begrenze die Breite auf 600px */
  border: 2px solid #4a90e2;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  background-color: #fdfdfd;
    margin: 20px auto; /* Oben und unten 20px Abstand, links/rechts auto */
}

/* FAQ Item */
.faq-item {
  border: none;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 10px;
  transition: none;
  background-color: #fff;
}

/* FAQ Frage */
.faq-question {
  cursor: pointer;
  margin: 0;
  font-weight: bold;
  color: #333;
}

/* FAQ Antwort */
.faq-answer {
  display: none;
  margin: 10px 0 0 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Hervorhebung für Suchbegriffe */
.highlight {
  background-color: yellow;
  font-weight: bold;
}

/* FAQ Header Container – Überschrift und Beschreibung zentriert */
.faq-header-container {
  text-align: center;
  margin: 20px 0;
}

/* Suchfeld Container – zentriert */
.search-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

/* Suchfeld Styling */
.search-container input[type="text"] {
  width: 100%;
  max-width: 550px;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Container für Suchergebnis-Texte – fester Platz */
.results-container {
  text-align: center;
  margin: 10px 0;
  min-height: 24px;
}
.contact-header {
  text-align: center;
}
/* Farben */
:root {
  --primary-color: #4a90e2;
}

/* Interaktive Galerie */
.interactive-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.gallery-container {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(74,144,226,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-text {
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.overlay-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.overlay-text .btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  color: var(--primary-color);
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.overlay-text .btn:hover {
  background: #e6f0fc;
}

/* Text neben der Galerie */
.gallery-text {
  flex: 1 1 300px;
}

.gallery-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gallery-text p {
  line-height: 1.6;
}

.emergency {
  font-weight: 700;
  color: #4a90e2;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-overlay .phones {
  font-size: 1.2rem;
}

/* Features Grid */
.features {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.feature-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.feature-item h3 {
  margin: 15px 0 10px;
  color: #4a90e2;
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0 15px 15px;
}

/* Testimonials */
.testimonials {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  max-width: 800px;
  color: #555;
}

.testimonials cite {
  display: block;
  font-weight: bold;
  color: #4a90e2;
}

/* Angebot Section */
.angebot {
  background: #4a90e2;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.angebot h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.angebot p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.angebot .btn {
  background: #fff;
  color: #4a90e2;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 700;
  transition: background 0.3s;
}

.angebot .btn:hover {
  background: #e6f0fc;
}

/* Kontakt Section */
.kontakt {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.kontakt h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #4a90e2;
}

.kontakt address {
  font-style: normal;
  line-height: 1.6;
}

.kontakt a {
  color: #4a90e2;
  font-weight: 700;
}
/* ================= FAQ Styles ================= */
.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  transition: background-color 0.3s ease;
}

.faq-question {
  cursor: pointer;
  margin: 0;
  font-weight: bold;
}

.faq-answer {
  display: none;
  margin: 5px 0 0 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.highlight {
  background-color: yellow;
}
/* -------------------------------
   Besitzer-Bild (Owner Image)
---------------------------------*/
.owner-img {
  display: block;              /* verhindert Inline-Spacing */
  width: 200px;                /* fixe Breite */
  height: 200px;               /* fixe Höhe (Quadratisch) */
  object-fit: cover;           /* schneidet das Bild proportional zu */
  border-radius: 50%;          /* kreisrund */
  border: 4px solid #4a90e2;   /* blauer Rahmen */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-right: 20px;          /* Abstand zum Text */
  float: left;
  
}

/* Falls du das Bild unterhalb des Headers zentriert brauchst: */
.owner-section {
  overflow: hidden;            /* um float aufzulösen */
  margin-bottom: 40px;
  max-width: 1200px;
}
/* styles.css */

/* Text-Abschnitt „Über uns“ */
.about-text {
  max-width: 800px;                /* Begrenzte Breite für bessere Lesbarkeit */
  margin: 40px auto;               /* Oben/Unten Abstand und zentriert */
  padding: 30px;                   /* Innenabstand */
  background: #fff;                /* Weißer Hintergrund *  /* Farblicher Akzent links */
  border-radius: 8px;              /* Leicht gerundete Ecken */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Feiner Schatten */
  line-height: 1.6;                /* Zeilenhöhe */
  color: #333;                     /* Textfarbe */
  font-size: 1rem;                 /* Standardgröße */
}

/* Optionale Typografie-Anpassungen */
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #4a90e2;
}

.about-text p {
  margin-bottom: 1em;
}
/* Owner-Section: Bild und Text nebeneinander */
.owner-section {
  display: flex;
  gap: 20px;              /* Abstand zwischen Bild und Text */
  align-items: flex-start;/* Bild und Text oben aneinander ausrichten */
  margin: 40px 0;         /* optional: Abstand nach oben/unten */
  flex-wrap: wrap;        /* bei schmaler Ansicht umbrechen */
}

/* Bild in der Owner-Section */
.owner-section .owner-img {
  flex: 0 0 200px;        /* Bild bleibt 200px breit */
  width: 200px;
  height: 200px;          /* quadratisch */
  object-fit: cover;      /* Bild skalieren und zuschneiden */
  border-radius: 50%;     /* rundes Bild */
  border: 4px solid #4a90e2; /* Rahmen in deiner Primärfarbe */
}

/* Textblock neben dem Bild */
.owner-section .owner-info {
  flex: 1;                /* nimmt den restlichen Platz ein */
}

/* Auf kleinen Bildschirmen untereinander */
@media (max-width: 767px) {
  .owner-section {
    flex-direction: column;
    align-items: center;  /* mittig ausrichten */
    text-align: center;   /* Text zentrieren */
  }
  .owner-section .owner-img {
    margin-bottom: 20px;  /* Abstand nach unten */
  }
}
/* styles.css */

/* styles.css */

:root {
  --primary-color: #4a90e2; /* Blau Deiner Seite */
  --primary-color-hover: rgba(74,144,226,0.8);
  --btn-font: 'Roboto', sans-serif;
}

.btn-contact {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-family: var(--btn-font);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--primary-color-hover);
}

:root {
  --primary-color: #4a90e2;
  --primary-color-hover: rgba(74,144,226,0.8);
  --btn-font: 'Roboto', sans-serif;
}

/* ---------------------------------------------------
   Große Hero-Galerie (full-width Bild mit Rahmen)
-----------------------------------------------------*/
.team-image {
  display: block;
  width: 100%;
  max-width: 1800px;              /* niemals breiter als 1800px */
  height: 400px;                  /* feste Höhe */
  object-fit: cover;              /* skaliert & beschneidet proportional */
  border-radius: 8px;             /* abgerundete Ecken */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 20px auto;              /* zentriert & Abstand oben/unten */
}

/* ---------------------------------------------------
   Team-Section: rundes Mitarbeiterbild rechts,
   Textblock links
-----------------------------------------------------*/
.team-section {
  display: flex;
  justify-content: flex-end;      /* schiebt Bild nach ganz rechts */
  align-items: flex-start;        /* Bild und Text oben ausrichten */
  gap: 20px;                       /* Abstand zwischen Text und Bild */
  width: 100%;                     /* volle Breite nutzen */
  align-self: stretch;            /* hebt Zentrierung des Elterncontainers auf */
  margin: 40px 0;                  /* Abstand oben/unten */
  flex-wrap: wrap;                 /* bei schmalen Bildschirmen umbrechen */
}

/* rundes Mitarbeiterbild */
.team-section .team-img {
  flex: 0 0 200px;                 /* Bild bleibt 200px breit */
  width: 200px;
  height: 200px;                   /* quadratisch */
  object-fit: cover;               /* skaliert & beschneidet proportional */
  border-radius: 50%;              /* rund */
  border: 4px solid var(--primary-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-left: auto;               /* stellt sicher, dass es ganz rechts klebt */
}

/* Textblock neben dem Bild */
.team-section .team-info {
  flex: 1;                         /* nimmt den restlichen Platz ein */
}

/* ---------------------------------------------------
   Kontakt-Button
-----------------------------------------------------*/
.btn-contact {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-family: var(--btn-font);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-contact:hover {
  background-color: var(--primary-color-hover);
}
/* wie owner-info, nur hier für team-info */
.team-info {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 600px;    /* je nach Bedarf */
  line-height: 1.6;
  color: #333;
}

/* falls Du noch Typografie willst */
.team-info h3 {
  margin-top: 0;
  color: #4a90e2;
}
.team-info p {
  margin-bottom: 1em;
}
:root {
  --primary: #4a90e2;
  --primary-light: rgba(74,144,226,0.1);
  --card-bg: #fff;
  --card-shadow: rgba(0,0,0,0.05);
  --font-base: 'Roboto', sans-serif;
}

.services-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--card-shadow);
  padding: 30px 20px 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px var(--card-shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 100%;
  height: auto;
}

.service-title {
  font-family: var(--font-base);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-desc {
  font-family: var(--font-base);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}

.service-link {
  display: inline-block;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--primary);
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.service-link:hover {
  background: darken(var(--primary), 10%);
}

/* Optional: unterschiedlicher Hintergrund für jede Karte */
#card-sanierung {
  background-image: url('images/bg-sanierung.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-aufloesung {
  background-image: url('images/bg-aufloesung.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-umzuege {
  background-image: url('images/bg-umzug.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-reinigung {
  background-image: url('images/bg-reinigung.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
/* CTA unterhalb der Features */
.features-cta {
  text-align: center;
  margin: 40px 0;
}

/* Spezieller Button für „Unsere Leistungen“ */
.btn-leistungen {
  display: inline-block;
  background-color: #4a90e2;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-leistungen:hover {
  background-color: rgba(74,144,226,0.8);
}
.feature-item h3 .feature-link {
  color: inherit;            /* übernimmt die Standardfarbe */
  text-decoration: none;     /* ohne Unterstreichung */
  transition: color 0.3s;
}

.feature-item h3 .feature-link:hover {
  color: #4a90e2;            /* Dein Akzent-Blau */
  text-decoration: underline;/* oder ein anderes Hover-Feedback */
}
/* Feature-Items jetzt als anklickbare Links */
.features .feature-item {
  display: block;               /* macht das <a> zum Block */
  color: inherit;               /* übernimmt die Überschrift-/Textfarbe */
  text-decoration: none;        /* entfernt Link-Unterstreichung */
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover-Effekt wie zuvor */
.features .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Falls Du die Überschrift extra hervorheben willst */
.features .feature-item h3 {
  margin-bottom: 0.5em;
  /* font-size, color etc. bleiben unverändert */
}
/* ==========================
   Accordion für Service‐Items
   ========================== */
.services-accordion {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.services-accordion h2 {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
}

/* Einzelnes Accordion‐Item */
.service-item {
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.service-item:hover {
  transform: translateY(-2px);
}

/* Zusammenfassung (sichtbarer Teil) */
.service-item summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--primary-color-light, rgba(74,144,226,0.1));
  list-style: none; /* entfernt den Pfeil bei manchen Browsern */
  position: relative;
}

/* Pfeil‐Icon selbst gestalten */
.service-item summary::marker {
  display: none;
}
.service-item summary::after {
  content: '▸';
  position: absolute;
  right: 1.2rem;
  transition: transform 0.2s;
}
.service-item[open] summary::after {
  transform: rotate(90deg);
}

/* Inhalt, der ein-/ausgeklappt wird */
.service-content {
  padding: 1rem 1.2rem;
  background: #fff;
  border-top: 1px solid var(--primary-color);
  animation: fadeIn 0.3s ease;
}

/* Einfadeschaltung beim Öffnen */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.service-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center; /* Buttons mittig unter den Services */
}

.service-buttons .btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.service-buttons .btn:hover {
  background-color: var(--primary-color-hover);
}

/* Falls du einen etwas anderen Button-Stil für Kontakt willst: */
.btn-contact {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-contact:hover {
  background-color: var(--primary-color);
  color: #fff;
}
/* ===========================
   Responsive Anpassungen
   =========================== */

/* 1. Tablet (max. Breite 768px) */
@media (max-width: 768px) {
  /* Header: Navigation unter dem Logo */
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* Page-Container breiter nutzen */
  .page-container {
    padding: 15px;
    max-width: 100%;
  }

  /* Features grid auf 2 Spalten reduzieren */
  .features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }

  /* Accordion & Service-Items */
  .services-accordion {
    padding: 0 10px;
  }

  /* Owner- / Team-Section */
  .owner-section,
  .team-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .owner-section .owner-img,
  .team-section .team-img {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  /* Buttons anpassen */
  .btn-contact,
  .btn-leistungen,
  .service-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* 2. Smartphone (max. Breite 480px) */
@media (max-width: 480px) {
  /* Hero-Bild Verhältnis anpassen */
  .hero img {
    height: auto;
  }

  /* Feature-Grid: nur 1 Spalte */
  .features {
    grid-template-columns: 1fr;
  }

  /* Galerie-Items: nur 1 Spalte */
  .gallery-container,
  .interactive-gallery {
    grid-template-columns: 1fr;
  }

  /* Schriftgrößen verkleinern */
  body {
    font-size: 14px;
    line-height: 1.4;
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  /* Navigation: Hamburger-Icon einblenden */
  .nav {
    display: none;
  }
  .header-container {
    position: relative;
  }
  .hamburger {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .mobile-nav.open {
    display: flex;
  }

  /* Formular und Accordion full-width */
  form,
  .services-accordion,
  #faq {
    margin: 20px 10px;
    width: auto;
  }
}
/* ===========================
   Responsive Anpassungen
   =========================== */

/* 1. Tablet (bis 768px) */
@media (max-width: 768px) {
  /* Header: Navigation unter Logo */
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* Hero: Bildhöhe adaptiv */
  .hero img {
    height: auto;
  }

  /* Features: 2 Spalten statt 4 */
  .features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  /* Angebot-Button */
  .angebot .btn {
    width: 100%;
    box-sizing: border-box;
  }

  /* Kontakt-Section */
  .kontakt {
    padding: 0 10px;
  }
}

/* 2. Smartphone (bis 480px) */
@media (max-width: 480px) {
  /* Grundschrift etwas kleiner */
  body {
    font-size: 14px;
    line-height: 1.4;
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  /* Hero-Section: Overlay und Text anpassen */
  .hero img {
    height: auto;
  }
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  .hero-overlay .phones {
    font-size: 1rem;
  }

  /* Features: 1 Spalte */
  .features {
    grid-template-columns: 1fr;
  }

  /* Angebot-Button volle Breite */
  .angebot .btn {
    width: 100%;
  }

  /* Page-Container Rand abflachen */
  .page-container {
    padding: 10px;
    max-width: 100%;
  }

  /* Kontakt und Footer breiter nutzen */
  .kontakt address,
  footer p,
  footer a {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }

  /* Footer Links untereinander */
  footer a {
    margin: 0.3rem 0;
  }
}
:root {
  --primary: #4a90e2;
  --primary-light: rgba(74,144,226,0.1);
  --font-base: 'Roboto', sans-serif;
  --radius: 0.5rem;
  --shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Verhindert Inline-Bruch für Absätze */
.owner-info p,
.team-info p {
  margin-bottom: 1.5em;
}

/* CTA */
.cta-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.btn {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-base);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background: darken(var(--primary), 10%);
}
.btn-outline {
  background: none;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 1rem; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .owner-section,
  .team-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .team-img, .owner-img {
    margin: 0 auto 1rem;
  }
  .hero-overlay h1 { font-size: 2rem; }
}
/* ---------------------------------
   Mobile-Optimierungen (bis 768px & 480px)
-----------------------------------*/

/* Allgemein: Hamburger-Menü (versteckt) */
.hamburger {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.mobile-nav.open {
  display: flex;
}

/* Tablet (bis 768px) */
@media (max-width: 768px) {
  /* Desktop-Navigation ausblenden, Hamburger einblenden */
  .nav {
    display: none;
  }
  .hamburger {
    display: block;
  }

  /* Header-Container: Logo + Hamburger nebeneinander */
  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Features: 2 Spalten */
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Owner- & Team-Section: vertikal statt horizontal */
  .owner-section,
  .team-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .owner-img,
  .team-img {
    max-width: 150px;
    max-height: 150px;
    margin: 0 auto 1rem;
  }
}

/* Smartphone (bis 480px) */
@media (max-width: 480px) {
  /* Basis-Schriftgrößen anpassen */
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.1rem;
  }

  /* Hero-Bild flexibel */
  .hero img {
    height: auto;
  }

  /* Features: 1 Spalte */
  .features {
    grid-template-columns: 1fr;
  }

  /* CTA-Buttons full-width */
  .btn,
  .btn-contact,
  .btn-leistungen {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Page-Container: Ränder reduzieren */
  .page-container {
    padding: 10px;
    max-width: 100%;
  }

  /* Kontakt & Footer: zentrieren */
  .kontakt address,
  footer p,
  footer a {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }
  footer a {
    margin: 0.3rem 0;
  }

  /* Mobile-Nav Fallback */
  .header-container {
    position: relative;
  }
}
/* ---------------------------------
   Mobile-Optimierungen für FAQ
-----------------------------------*/

/* Tablet (bis 768px) */
@media (max-width: 768px) {
  /* Seite etwas schmaler paddings */
  .page-container,
  #page-wrapper {
    padding: 0 10px;
  }

  /* FAQ-Header und Suchfeld zentrieren und breiter */
  .faq-header-container,
  .search-container,
  .results-container {
    padding: 0 10px;
    text-align: center;
  }
  .search-container input {
    width: 100%;
    max-width: none;
  }

  /* FAQ-Box schmaler machen */
  #faq {
    margin: 20px 0;
    padding: 15px;
  }

  /* FAQ-Items: mehr Platz, größere Klick-Ziele */
  .faq-item {
    padding: 12px 0;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.9rem;
    margin-left: 15px;
  }
}

/* Smartphone (bis 480px) */
@media (max-width: 480px) {
  /* Grundschrift etwas reduzieren */
  body {
    font-size: 14px;
    line-height: 1.4;
  }

  /* FAQ-Header etwas kleiner */
  .faq-header-container h2 {
    font-size: 1.4rem;
  }
  .faq-header-container p {
    font-size: 0.9rem;
  }

  /* Suchfeld full-width */
  .search-container input {
    font-size: 0.9rem;
    padding: 8px;
  }

  /* FAQ-Container full-width mit kleinem Rand */
  #faq {
    margin: 15px 5px;
    padding: 12px;
  }

  /* FAQ-Fragen und Antworten etwas kompakter */
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.85rem;
    margin-left: 12px;
  }

  /* Footer-Links untereinander */
  footer p,
  footer a {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }
}
/* ---------------------------------
   Mobile-Optimierungen für FAQ
-----------------------------------*/

/* Tablet (bis 768px) */
@media (max-width: 768px) {
  /* Seite etwas schmaler paddings */
  .page-container,
  #page-wrapper {
    padding: 0 10px;
  }

  /* FAQ-Header und Suchfeld zentrieren und breiter */
  .faq-header-container,
  .search-container,
  .results-container {
    padding: 0 10px;
    text-align: center;
  }
  .search-container input {
    width: 100%;
    max-width: none;
  }

  /* FAQ-Box schmaler machen */
  #faq {
    margin: 20px 0;
    padding: 15px;
  }

  /* FAQ-Items: mehr Platz, größere Klick-Ziele */
  .faq-item {
    padding: 12px 0;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.9rem;
    margin-left: 15px;
  }
}

/* Smartphone (bis 480px) */
@media (max-width: 480px) {
  /* Grundschrift etwas reduzieren */
  body {
    font-size: 14px;
    line-height: 1.4;
  }

  /* FAQ-Header etwas kleiner */
  .faq-header-container h2 {
    font-size: 1.4rem;
  }
  .faq-header-container p {
    font-size: 0.9rem;
  }

  /* Suchfeld full-width */
  .search-container input {
    font-size: 0.9rem;
    padding: 8px;
  }

  /* FAQ-Container full-width mit kleinem Rand */
  #faq {
    margin: 15px 5px;
    padding: 12px;
  }

  /* FAQ-Fragen und Antworten etwas kompakter */
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.85rem;
    margin-left: 12px;
  }

  /* Footer-Links untereinander */
  footer p,
  footer a {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }
}
.agb h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.agb p {
  margin-bottom: 1.25rem;
}
