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

/* Farb- und Schriftvariablen */
:root {
  --dark-bg: #000;
  --green: #105a24;
  --light-green: #9cfba4;
  --white: #fff;
  --font-base: 'Raleway', sans-serif;
}

body {
  font-family: var(--font-base);
  color: var(--white);
  background: var(--dark-bg);
  line-height: 1.5; 
   font-size: 100%; 
}

/* Unter 800px Bildschirmbreite: Schrift um 10% kleiner */
@media (max-width: 800px) {
  body {
      font-size: 90%; 
  }
}

/* Unter 600px Bildschirmbreite: noch einmal 10% kleiner, insgesamt ~20% kleiner als Standard */
@media (max-width: 600px) {
  body {
      font-size: 80%; 
  }
}
a {
  color: var(--light-green);
  text-decoration: none; /* Keine Unterstreichung bei normalen Links */
}

a:hover {
  text-decoration: none; /* Auch beim Hover keine Unterstreichung */
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #000;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: none; /* Standard: unsichtbar */
  background: #000; /* Hintergrundfarbe für das mobile Menü */
  padding: 1rem;
  margin: 0;
  text-align: center; /* Zentrierte Links */
}

.main-nav ul li {
  display: block;
  margin: 1rem 0; /* Abstand zwischen den einzelnen Links im mobilen Menü */
}
.main-nav li a {
  color: var(--light-green);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem; /* Erhöhe hier die Schriftgröße für die Nav-Links */
  transition: color 0.3s ease;
}

.main-nav li a:hover {
  color: var(--green); /* Hover-Farbe unverändert */
}
.main-nav li.active a {
  color: var(--green);
  
}

/* Burger-Menü */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--light-green);
  font-size: 2rem;
  cursor: pointer;
}

/* Ab 768px Desktop-Menü zeigen */
@media (min-width: 1150px) {
  .main-nav ul {
      display: block;
  }
  .mobile-menu-toggle {
      display: none;
  }
}

/* Für Desktop ab 768px */
@media (min-width: 1150px) {
  .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      white-space: nowrap; /* Verhindert Zeilenumbruch */
  }

  .main-nav ul {
      display: inline-block;
      white-space: nowrap; /* Verhindert Zeilenumbruch innerhalb der Links */
  }

  .main-nav ul li {
      display: inline-block;
      margin: 0 0.5rem;
      vertical-align: middle;
  }
}






/* Hauptbereich */
main {
  padding: bottom 2rem;
}

/*  inde */

/* Hero Section */
.hero-section {
  /* Ein subtiler Farbverlauf von dunklem Grün zu Schwarz */
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: var(--white);
  padding: 6rem 0; /* Mehr Padding, um den Bereich großzügiger wirken zu lassen */
  text-align: center;
}

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

.hero-section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--light-green); /* leichte Hervorhebung für die Zielgruppe */
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}


.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: var(--light-green);
}

/* Leistungen Section */
.leistungen-section {
  padding: 4rem 0;
  text-align: center;
  background: #111; /* etwas helleres Schwarz für Kontrast */
}

.leistungen-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.leistungen-section p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.leistung-card {
  background: #222;
  padding: 2rem;
  border-radius: 4px;
  flex: 1 1 100%;
  max-width: 400px;
  text-align: left;
}

.leistung-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.leistung-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.btn-secondary {
  display: inline-block;
  background: var(--light-green);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

/* Ab 768px: Leistungen nebeneinander */
@media (min-width: 768px) {
  .leistung-card {
      flex: 1 1 calc(33.333% - 2rem);
  }
}

/* CTA Section */
.cta-section {
  /* Hier kehren wir den Verlauf um: von Schwarz zu Dunkelgrün */
  background: linear-gradient(135deg, #000 0%, #0a3012 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}



/* ueberwechung */


/* Subpage Hero */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-subpage p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Leistungen Overview */
.leistungen-overview {
  background: #111;
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.leistungen-overview h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.leistungen-overview p {
  margin-bottom: 2rem;
}
.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.leistungen-grid ul {
  background: #222;
  padding: 1rem;
  border-radius: 4px;
  flex: 1 1 200px;
  max-width: 400px;
  list-style: none;
}
.leistungen-grid ul li {
  margin-bottom: 0.5rem;
}
.leistungen-grid ul li strong {
  font-weight: bold;
}

/* Systeme Section (Accordion) */
.systeme-section {
  background: #000;
  color: var(--white);
  padding: 3rem 0;
  text-align: left;
}
.systeme-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.systeme-section p {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.5;
}
.system-accordion {
  margin-bottom: 1.5rem;
}
.system-title {
  cursor: pointer;
  font-size: 1.3rem;
  background: #111;
  padding: 1rem;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.system-content {
  background: #222;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}
.hidden {
  display: none;
}
.system-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}
.system-details > div {
  flex: 1 1 200px;
}
.system-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.system-details ul {
  list-style: none;
  padding: 0;
}
.system-details ul li {
  margin-bottom: 0.5rem;
}

/* Backup Info */
.backup-info {
  background: #111;
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.backup-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.backup-info p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Vorteile */
.vorteile {
  background: #000;
  padding: 3rem 0;
  text-align: center;
}
.vorteile h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.vorteile .leistungen-grid {
  justify-content: center;
}
.vorteile .leistungen-grid ul {
  background: #222;
  padding: 1rem;
  border-radius: 4px;
  flex: 1 1 200px;
  max-width: 300px;
  list-style: none;
  color: var(--white);
}

/* Kosten Section */
.kosten-section {
  background: #111;
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.kosten-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.kosten-section p {
  max-width: 500px;
  margin: 0 auto;
}

/* Responsive Anpassungen */
@media (min-width: 768px) {
  .leistungen-grid {
      justify-content: center;
  }
  .system-details {
      justify-content: start;
  }
}




/* 'Speicher' */

/* Hero für Subpages */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-subpage p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Speicher-Arten */
.speicher-arten {
  background: #111;
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.speicher-arten h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.speicher-arten p {
  margin-bottom: 2rem;
}

.speicher-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.speicher-block {
  background: #222;
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 400px;
  flex: 1 1 200px;
  text-align: left;
}

.speicher-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.speicher-block ul {
  list-style: none;
  padding: 0;
}

.speicher-block ul li {
  margin-bottom: 0.5rem;
}

/* Speicher-Typen */
.speicher-typen {
  background: #000;
  color: var(--white);
  padding: 3rem 0;
  text-align: left;
}

.speicher-typen h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.speicher-type {
  background: #111;
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.speicher-type h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-green);
}

.speicher-type p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.speicher-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.speicher-details > div {
  flex: 1 1 200px;
}

.speicher-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.speicher-details ul {
  list-style: none;
  padding: 0;
}

.speicher-details li {
  margin-bottom: 0.5rem;
}

.speicher-preis h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.speicher-preis p {
  margin-bottom: 0.5rem;
}

/* Responsive Anpassungen */
@media (min-width: 768px) {
  .speicher-grid {
      justify-content: center;
  }
  .speicher-details {
      justify-content: flex-start;
  }
}

/* it-support*/

/* Hero für Subpages - passt sich dem bestehenden Design an */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-subpage p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* IT-Support "Warum wir?" */
.it-support-why {
  background: #111;
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.it-support-why h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.it-support-why p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.features-grid ul {
  background: #222;
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 400px;
  flex: 1 1 200px;
  list-style: none;
  text-align: left;
}

.features-grid ul li {
  margin-bottom: 0.5rem;
}

/* IT-Support Leistungen */
.it-support-services {
  background: #000;
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.it-support-services h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.it-support-services p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.services-grid ul {
  background: #111;
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 400px;
  flex: 1 1 200px;
  list-style: none;
  text-align: left;
}

.services-grid ul li {
  margin-bottom: 0.5rem;
}

/* Responsive Anpassungen */
@media (min-width: 768px) {
  .features-grid, .services-grid {
      justify-content: center;
  }
}


/* serveruhost*/

/* Hero Subpage */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-subpage p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Intro Abschnitte */
.hosting-intro, .server-intro {
  background: #111;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.hosting-intro h2, .server-intro h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.hosting-intro p, .server-intro p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.features-grid ul {
  background: #222;
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 400px;
  flex: 1 1 200px;
  list-style: none;
  text-align: left;
}
.features-grid ul li {
  margin-bottom: 0.5rem;
}

/* Pakete Bereiche */
.hosting-pakete, .server-pakete {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.hosting-pakete h2, .server-pakete h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.hosting-pakete p, .server-pakete p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.pakete-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.paket-box {
  background: #111;
  padding: 2rem;
  border-radius: 4px;
  max-width: 350px; /* Statt 300px nun 350px */
  flex: 1 1 300px;  /* Mindestbreite von 300px */
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.paket-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--light-green, #9cfba4);
}

.paket-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.paket-box ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.paket-box .price {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.paket-box .info-hinweis {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.paket-box-h {
  background: #111;
  padding: 2rem;
  border-radius: 4px;
  max-width: 700px; /* Statt 300px nun 350px */
  flex: 1 1 300px;  /* Mindestbreite von 300px */
  text-align: left;
  display: inline-block;
  flex-direction: column;
  justify-content: space-between;
}


.paket-box-h h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--light-green, #9cfba4);
}

.paket-box-h ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.paket-box-h ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.paket-box-h .price {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.paket-box-h .info-hinweis {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #ccc;
}
.btn-primary {
  display: inline-block;
  background: var(--green, #105a24);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--light-green, #9cfba4);
  color: #000;
}

/* Responsive Anpassungen */
@media (min-width: 768px) {
  .features-grid, .pakete-grid {
      justify-content: center;
  }
  .paket-box {
      max-width: 250px;
  }
}


@media (min-width: 768px) {
  .pakete-grid {
      justify-content: center;
  }
  .paket-box-h {
      max-width: 350px; 
  }
}

@media (min-width: 1200px) {
  .paket-box-h {
      max-width: 700px; /* Noch breiter auf großen Bildschirmen */
  }
}
@media (min-width: 768px) {
  .features-grid, .pakete-grid {
      justify-content: center;
  }
  .paket-box-h {
      max-width: 250px;
  }
}


@media (min-width: 768px) {
  .pakete-grid {
      justify-content: center;
  }
  .paket-box-h {
      max-width: 350px; 
  }
}

@media (min-width: 1200px) {
  .paket-box-h {
      max-width: 700px; /* Noch breiter auf großen Bildschirmen */
  }
}

/* digi */


/* Hero Subpage */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-subpage p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Warum Digitalisierung */
.why-digitalisierung {
  background: #111;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.why-digitalisierung h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.why-digitalisierung p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Leistungen */
.leistungen-digitalisierung {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.leistungen-digitalisierung h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.leistungen-digitalisierung p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.leistungen-grid ul {
  background: #111;
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 400px;
  flex: 1 1 200px;
  list-style: none;
  text-align: left;
}
.leistungen-grid ul li {
  margin-bottom: 0.5rem;
}

/* Neu im Programm */
.neu-im-programm {
  background: #111;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.neu-im-programm h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.neu-im-programm p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.neu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.neu-box {
  background: #000;
  padding: 2rem;
  border-radius: 4px;
  max-width: 400px;
  flex: 1 1 200px;
  text-align: left;
  color: #fff;
}

.neu-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--light-green, #9cfba4);
}

.neu-box p {
  font-size: 1rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #000 0%, #0a3012 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.btn-primary {
  display: inline-block;
  background: var(--green, #105a24);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: var(--light-green, #9cfba4);
  color: #000;
}

/* Responsive Anpassungen */
@media (min-width: 768px) {
  .leistungen-grid, .neu-grid {
      justify-content: center;
  }
  .neu-box {
      max-width: 350px;
  }
}




/* kontakt */

/* Hero Subpage */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-subpage h2 {
  margin-top: 1rem;
}
.hero-subpage p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.5;
}


.kunden-nachricht-page {
  display: flex;
  flex-direction: column;

  color: #fff;
}

.kunden-nachricht-page .nachricht-container {
  flex: 1;
  padding: 2rem 0;
}

.kunden-nachricht-page .intro-container h1 {
  font-size: 2rem;
  color: var(--lb);
  margin-bottom: 1rem;
  text-align: center;
}
.kunden-nachricht-page .intro-container p {
  text-align: center;
}
.kunden-nachricht-page .success-message,
.kunden-nachricht-page .error-message {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.kunden-nachricht-page .success-message {
  color: #00b45d;
}

.kunden-nachricht-page .error-message {
  color: red;
}


.kunden-nachricht-page #kontakt-formular {
  max-width: 850px;
  margin: 2rem auto 0 auto;
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}


.kunden-nachricht-page .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}


.kunden-nachricht-page .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kunden-nachricht-page .form-group.full-width {
  flex: 1 1 100%;
}

.kunden-nachricht-page .form-group label {
  font-size: 1rem;
  font-weight: 701;
  color: var(--lb);
  margin-bottom: 0.5rem;
}

.kunden-nachricht-page #kontakt-formular input[type="text"],
.kunden-nachricht-page #kontakt-formular select,
.kunden-nachricht-page #kontakt-formular textarea,
.kunden-nachricht-page #kontakt-formular input[type="email"] {
  width: 100%;
  padding: 0.6rem;
  border: 2px solid #333;
  background: #111;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.kunden-nachricht-page #kontakt-formular input[type="text"]:focus,
.kunden-nachricht-page #kontakt-formular select:focus,
.kunden-nachricht-page #kontakt-formular textarea:focus,
.kunden-nachricht-page #kontakt-formular input[type="email"]:focus {
  outline: none;
  border-color: var(--lb);
  box-shadow: 0 0 5px var(--lb);
  background: #000;
}

.kunden-nachricht-page #kontakt-formular textarea {
  height: 150px;
  resize: vertical;
}

.kunden-nachricht-page .btn-row {
  text-align: center;
}

@media (max-width: 600px) {
  .kunden-nachricht-page .intro-container h1 {
    font-size: 1.6rem;
  }

  .kunden-nachricht-page #kontakt-formular {
    padding: 1.5rem;
  }

  .kunden-nachricht-page .form-row {
    flex-direction: column;
  }

  .kunden-nachricht-page .form-group {
    flex: 1 1 100%;
  }
}

/* Grid-Klassen */
.row::after {
  content: "";
  display: block;
  clear: both;
}
.col-3 {
  float: left;
  width: 48%;
  margin-right: 2%;
  box-sizing: border-box;
}
.col-6 {
  float: left;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .col-3 {
      width: 100%;
      margin-right: 0;
  }
}

/* Platz zwischen Rows */
#kontakt-formular .row {
  margin-bottom: 1rem;
}


/* impressum  */

/* Hero Subpage für Impressum */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Allgemeiner Inhaltsbereich */
.content-section {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: left;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #9cfba4; /* Leichter Akzent für Überschriften */
}

.content-section p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.form-link {
  color: #9cfba4;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.form-link:hover {
  color: #fff;
}

/* Grid-Klassen (falls noch nicht vorhanden) */
.row::after {
  content: "";
  display: block;
  clear: both;
}
.col-6 {
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: .5rem;
}

@media (min-width: 768px) {
  .col-6 {
      width: 100%;
  }
}




/* ds */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-section {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: left;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #9cfba4;
}

.content-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  color: #9cfba4;
}

.content-section h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  margin-top: 1rem;
  color: #9cfba4;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.form-link {
  color: #9cfba4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-link:hover {
  color: #fff;
}

.row::after {
  content: "";
  display: block;
  clear: both;
}

.col-6 {
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: .5rem;
}

@media (min-width: 768px) {
  .col-6 {
      width: 100%;
  }
}


/* agb */
.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-section {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: left;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #9cfba4;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.form-link {
  color: #9cfba4;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.form-link:hover {
  color: #fff;
}

.row::after {
  content: "";
  display: block;
  clear: both;
}

.col-6 {
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: .5rem;
}

@media (min-width: 768px) {
  .col-6 {
      width: 100%;
  }
}


/* digi */

.hero-subpage {
  background: linear-gradient(135deg, #0a3012 0%, #000 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.hero-subpage h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-section {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: left;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #9cfba4;
}

.content-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #9cfba4;
}

.cookie-form {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.cookie-option {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cookie-option input[type='checkbox'] {
  width: auto;
  height: auto;
  margin-right: 0.5rem;
}

.cookie-option label {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.form-link {
  color: #9cfba4;
  text-decoration: underline;
  margin-left: 0.3rem;
}
.form-link:hover {
  color: #fff;
}

.cookie-save-button {
  margin-top: 2rem;
}

#absendenButton.glow {
  background: #105a24;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  position: relative;
  transition: background 0.3s ease;
}

#absendenButton.glow:hover {
  background: #9cfba4;
  color: #000;
}

.row::after {
  content: "";
  display: block;
  clear: both;
}

.col-6 {
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: .5rem;
}

@media (min-width: 768px) {
  .col-6 {
      width: 100%;
  }
}

.cookie-tool {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  color: #fff;
  z-index: 9999;
  padding: 1.5rem;
  font-size: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  border-top: 1px solid #333;
}

.cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-tool h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #9cfba4;
}

.cookie-tool h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #9cfba4;
}

.cookie-tool p {
  line-height: 1.5;
  margin-bottom: 1rem;
}

.form-link {
  color: #9cfba4;
  text-decoration: underline;
  margin-right: 0.5rem;
}
.form-link:hover {
  color: #fff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: nowrap; /* Kein automatischer Zeilenumbruch bei großer Breite */
  justify-content: flex-start; 
  align-items: center;
}

.cookie-form {
  display: inline-block;
  margin: 0; /* Sicherstellen, dass kein extra Abstand entsteht */
}

.cookie-btn {
  background: #105a24;
  border: none;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1rem;
  white-space: nowrap; /* verhindert Zeilenumbruch im Button-Text */
}

.cookie-btn:hover {
  background: #9cfba4;
  color: #000;
}

.cookie-btn-more {
  background: #444;
}
.cookie-btn-more:hover {
  background: #666;
  color: #fff;
}

.cookie-btn-decline {
  background: #A62C21;
}
.cookie-btn-decline:hover {
  background: #FF5E4D;
  color: #000;
}

.cookie-btn-accept {
  background: #105a24;
}
.cookie-btn-accept:hover {
  background: #9cfba4;
  color: #000;
}

/* Responsive: Unter 600px werden die Buttons untereinander angeordnet */
@media (max-width: 600px) {
  .cookie-buttons {
      flex-direction: column;
      align-items: flex-start;
  }
  .cookie-form {
      width: 100%;
  }
  .cookie-btn {
      width: 100%;
      margin-bottom: 0.5rem;
  }
}


/* speedtest */

/* Footer */
.site-footer {
  background: #000;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 100%;
}

.footer-column h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-column p, 
.footer-column li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

/* Ab 768px Footer-Spalten nebeneinander */
@media (min-width: 768px) {
  .footer-column {
      flex: 1 1 calc(25% - 2rem);
  }
}
