:root {
  --color-primary: #123a5c;
  --color-secondary: #5a5a5a;
  --color-accent: #d6a947;
  --color-bg: #f9f9f9;
  --color-white: #ffffff;

  --font-heading: 'Merriweather', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Body + Container */
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-secondary);
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

/* Button */
.button-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.button-primary:hover {
  background-color: var(--color-accent);
}

/* Section Styling */
.section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
/**/
/* Navigation Grundstruktur */
.site-header {
  background-color: #f0f4f7;
  color: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.logo img {
  height: 60px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.main-nav a.nav-cta {
  background-color: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
}

.main-nav a.nav-cta:hover {
  background-color: var(--color-accent);
}

/* Burger Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-primary);
  cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #f0f4f7;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .main-nav li {
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 20px;
  }

  .nav-toggle {
    display: block;
  }
}

/**/
.site-footer {
  background-color: #1f2a2e;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.footer-top {
  padding: 60px 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.footer-column a {
  color: #e0e0e0;
  text-decoration: underline;
}

.footer-map iframe {
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Footer Bottom */
.footer-bottom {
  background-color: #1f2a2e;
  text-align: center;
  padding: 20px;
  overflow-wrap: break-word; /* für schmale Screens */
}

.footer-legal p {
  margin: 0 auto;
  max-width: 100%;
  font-size: 0.85rem;
  line-height: 1.5;
}


.footer-bottom a {
  color: #bbb;
  margin: 0 8px;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: underline;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-accent); /* z. B. Gold oder Hellblau */
}


/**/
.hero {
  background: linear-gradient(
    to right,
    #eef3f7 0%,
    #f7f9fb 40%,
    #ffffff 100%
  );
  padding: 80px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1 1 auto;
}

@media (min-width: 769px) {
  .hero-text {
    flex: 1 1 500px;
  }
}


.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text h1 span {
  color: var(--color-accent);
  display: block;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px; /* reduziert für Mobil */
  color: var(--color-secondary);
  max-width: 540px;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Call-to-Action-Button */
.button-primary {
  background-color: var(--color-primary);   /* z. B. #123a5c */
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s ease;
  margin-bottom: 0;
}

.button-primary:hover {
  background-color: #165080;  /* dunkleres Blau */
}

/* Mobile Layout Optimierungen */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px 0px 20px; /* vorher 80px – reduziert für weniger Scrollhöhe */
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 20px; /* statt 30px */
  }

  .hero-image {
    margin-top: 20px; /* Abstand zwischen Text & Bild */
  }
}

/**/
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.leistung-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.2s ease;
  min-height: 72px;
}

.leistung-card:hover {
  background-color: #f1f5f9;
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }
}

/**/
.section-alt {
  background-color: #ffffff; /* ODER #f8f9fa / #edf2f7 je nach Stil */
}
.grid-2-fixed {
  display: grid;
  grid-template-columns: 2fr 2fr; /* vorher 2fr 1fr – jetzt harmonischer */
  gap: 64px;
  align-items: start;
}

.column-left,
.column-right {
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Inter', sans-serif; /* oder dein globaler Font */
  color: #1a2733; /* anpassen an deinen Textstandard */
}

.column-right h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.column-right ul {
  list-style: disc outside;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.column-right li {
  margin-bottom: 0.75rem;
}

.column-right img {
 
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
  .grid-2-fixed {
    grid-template-columns: 1fr;
  }

  .column-right {
    margin-top: 40px;
  }
}

/**/
/* Hintergrund und Abstände für die Autoöffnungs-Section */
.autooeffnung-section {
  background-color: #f8f9fa;   /* eigener Hintergrund */
  padding: 2rem 0;            /* vertikaler Innenabstand oben/unten */
}

/* Grid-Container für zwei Spalten (2fr 2fr) */
.autooeffnung-container {
  display: grid;
  grid-template-columns: 2fr 2fr;  /* zwei Spalten, gleich breit */
  gap: 2rem;                       /* Abstand zwischen den Spalten */
  align-items: start;              /* Inhalte am oberen Rand ausrichten */
  max-width: 1200px;               /* optionale max. Breite für den Inhalt */
  margin: 0 auto;                  /* zentrieren des Containers */
  padding: 0 1rem;                 /* horizontaler Innenabstand (für mobile Ränder) */
}

/* Linke Spalte: Bild responsive darstellen */
.autooeffnung-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Anpassung: Bei schmalen Bildschirmen einspaltiges Layout */
@media (max-width: 768px) {
  .autooeffnung-container {
    grid-template-columns: 1fr;   /* auf Mobile: eine Spalte (stacked layout) */
  }
}

/**/
.schlosswechsel-section {
  background-color: #ffffff; /* neue, eigene Hintergrundfarbe */
  padding: 80px 20px;
}

.schlosswechsel-container {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.schlosswechsel-left,
.schlosswechsel-right {
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  color: #1a2733;
}

.schlosswechsel-right img {
  
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 960px) {
  .schlosswechsel-container {
    grid-template-columns: 1fr;
  }

  .schlosswechsel-right {
    margin-top: 40px;
  }
}

/**/
.garagenoeffnung-section {
  background-color: #fdfdfc; /* eigener Hintergrund – abgesetzt, aber hell & neutral */
  padding: 80px 20px;
}

.garagenoeffnung-container {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.garagenoeffnung-left,
.garagenoeffnung-right {
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  color: #1a2733;
}

.garagenoeffnung-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 960px) {
  .garagenoeffnung-container {
    grid-template-columns: 1fr;
  }

  .garagenoeffnung-right {
    margin-top: 40px;
  }
}

/**/
.briefkastenoeffnung-section {
  background-color: #f7f9fc; /* eigenständiger, sehr heller Farbton */
  padding: 80px 20px;
}

.briefkastenoeffnung-container {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.briefkastenoeffnung-left,
.briefkastenoeffnung-right {
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  color: #1a2733;
}

.briefkastenoeffnung-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 960px) {
  .briefkastenoeffnung-container {
    grid-template-columns: 1fr;
  }

  .briefkastenoeffnung-right {
    margin-top: 40px;
  }
}

/**/
.faq-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1.8rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

/**/
.cta-section {
  background-color: #233240;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #1a2733;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f4f7;
}

/**/
.mobile-call-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100vw;
  background-color: #1a2733;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 0;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  box-sizing: border-box;
}

/* Sichtbar nur auf mobilen Geräten */
@media (max-width: 768px) {
  .mobile-call-button {
    display: block;
  }
}
.site-footer {
  padding-bottom: 80px; /* Platz für fixierten Button */
}


/**/
.hid-ad {
  display: none;
}

/**/
.einsatzgebiet-section {
  background-color: #f9fafb;
  padding: 80px 20px;
}

.einsatzgebiet-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.einsatzgebiet-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.einsatzgebiet-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #1a2733;
}

.einsatzgebiet-bild img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 960px) {
  .einsatzgebiet-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .einsatzgebiet-bild {
    margin-top: 30px;
  }

  .einsatzgebiet-bild img {
    margin: 0 auto;
  }
}

/**/
.nachbarorte-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.nachbarorte-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.nachbarorte-section p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #1a2733;
}

.nachbarorte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.nachbarort-box {
  background: #f7f9fb;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.nachbarort-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #1a2733;
}

.nachbarort-box p {
  font-size: 0.95rem;
  color: #1a2733;
  line-height: 1.5;
}

/* Mobil */
@media (max-width: 768px) {
  .nachbarorte-grid {
    grid-template-columns: 1fr;
  }
}

/**/
.schliessanlagen-intro-section {
  background-color: #f9fafb;
  padding: 80px 20px;
}

.schliessanlagen-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.schliessanlagen-intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.schliessanlagen-intro-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #1a2733;
}

.schliessanlagen-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 960px) {
  .schliessanlagen-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .schliessanlagen-intro-image {
    margin-top: 40px;
  }
}

/**/
.schliessanlagen-vergleich-section {
  background-color: #f7f9fb;
  padding: 80px 20px;
}

.schliessanlagen-vergleich-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.vergleich-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.vergleich-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.vergleich-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #1a2733;
}

.vergleich-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.vergleich-card ul {
  padding-left: 1rem;
  list-style-type: disc;
  color: #1a2733;
}

.vergleich-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/**/
.schliessanlagen-arten-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.schliessanlagen-arten-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.anlagenarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.anlagenart-card {
  background-color: #f7f9fb;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.anlagenart-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #1a2733;
}

.anlagenart-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.schliessanlagen-ablauf-section {
  background-color: #f9fafb;
  padding: 80px 20px;
}

.schliessanlagen-ablauf-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;

  /* Maximal 3 Karten pro Reihe */
  max-width: 960px;
  margin: 0 auto;
}


.ablauf-schritt {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
}

.ablauf-zahl {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent, #f2c94c);
  margin-bottom: 8px;
}

.ablauf-schritt h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.ablauf-schritt p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.schliessanlagen-marken-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.schliessanlagen-marken-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.section-intro {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.marken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.marke-card {
  background-color: #f7f9fb;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.marke-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.marke-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.schliessanlagen-vorteile-section {
  background-color: #f9fafb;
  padding: 80px 20px;
}

.schliessanlagen-vorteile-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}


.vorteil-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.vorteil-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.vorteil-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.schliessanlagen-faq-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.schliessanlagen-faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-card {
  background-color: #f7f9fb;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.faq-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.cta-section {
  background-color: #233240;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #1a2733;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f4f7;
}

/**/
.einbruchschutz-intro-section {
  background-color: #f9fafb;
  padding: 80px 20px;
}

.einbruchschutz-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.einbruchschutz-intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.einbruchschutz-intro-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #1a2733;
}

.einbruchschutz-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Mobil */
@media (max-width: 960px) {
  .einbruchschutz-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .einbruchschutz-intro-image {
    margin-top: 40px;
  }
}

/**/
.einbruchschutz-produkte-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.einbruchschutz-produkte-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.section-intro {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.produkte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.produkt-card {
  background-color: #f7f9fb;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.produkt-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.produkt-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.einbruchschutz-vorteile-section {
  background-color: #f9fafb;
  padding: 80px 20px;
}

.einbruchschutz-vorteile-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a2733;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.vorteil-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.vorteil-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.vorteil-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.einbruchschutz-ablauf-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.einbruchschutz-ablauf-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.ablauf-schritt {
  background: #f7f9fb;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ablauf-zahl {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent, #f2c94c);
  margin-bottom: 8px;
}

.ablauf-schritt h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.ablauf-schritt p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
.einbruchschutz-faq-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.einbruchschutz-faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2733;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-card {
  background-color: #f7f9fb;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a2733;
}

.faq-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1a2733;
}

/**/
/**/
/**/
/**/
/**/
/**/
/**//**/
/**/
/**/
/**/
/**/
/**/
/**//**/
/**/
/**/
/**/
/**/
/**/
/**//**/
/**/
/**/
/**/
/**/
/**/
/**/  