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

/* Farb- und Schriftvariablen */
:root {
  --body-bg: #f2f5f9;        /* Leicht getönter heller Hintergrund für den Body */
  --text-color: #333;        /* Dunkles Grau für Fließtext */
  --primary-color: #32bbee;  /* Frisches Hellblau als Akzent */
  --primary-hover: #1F4E8C;  /* Dunkleres Blau für Hover-Effekt */
  --font-base: 'Raleway', sans-serif;
  --header-footer-bg: #000;  /* Schwarz für Header und Footer */
  --header-footer-text: #fff; /* Weißer Text im Header und Footer */
}

body {
  background: var(--body-bg);
  color: var(--text-light);
  font-family: var(--font-base);
  line-height: 1.5;
  margin: 0;
}

/* Schriftgrößen für kleinere Screens */
@media (max-width: 800px) {
  body {
    font-size: 90%; 
  }
}

@media (max-width: 600px) {
  body {
    font-size: 80%; 
  }
}

a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

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

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

/* Header */
.site-header {
  background: var(--header-footer-bg);
  padding: 1rem 0;
  border-bottom: 2px solid var(--primary-color);
}

.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; /* Mobile: unsichtbar */
  background: var(--header-footer-bg);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  padding: 1rem;
  margin: 0;
  text-align: center; 
}

.main-nav ul li {
  display: block;
  margin: 1rem 0;
}

.main-nav li a {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.main-nav li a:hover {
  color: var(--primary-hover);
}

.main-nav li.active a {
  color: var(--primary-hover);
}

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

/* Desktop-Navigation ab 1150px */
@media (min-width: 1150px) {
  .main-nav ul {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .main-nav ul li {
    display: inline-block;
    margin: 0 0.5rem;
  }
}

/* Hauptbereich */


.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-subheading {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.apos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.custom-anker {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-weight: bold;
  color: var(--primary-color);
  background: transparent;
  text-decoration: none;
  transition: background 0.3s ease;
}

.custom-anker:hover {
  background: var(--primary-color);
  color: #fff;
}


.hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 6rem 1rem;
  text-align: center;
  color: #fff;
}
.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 301;
}
.hero-text {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.btn-primary {
  background: #32bbee;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #1F4E8C;
  color: #fff;
}

.leistungen-section {
  background: #222222;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  color: #ccc;
}

.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch; /* Sorgt dafür, dass alle Karten die gleiche Höhe haben */
}

.leistung-card {
  background: #1a1a1a;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.leistung-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.leistung-card p {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Drückt den Button nach unten, wenn der Text länger ist */
}

.card-actions {
  display: flex;
  justify-content: flex-start;
}

.btn-secondary {
  background: #32bbee; /* Hellblauer Button */
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #1F4E8C; /* Dunkleres Blau beim Hover */
  color: #fff;
}

/* uerbe-lesitung */

.leistungen-overview-section {
  background: #222222;
  padding: 4rem 1rem;
  text-align: center;
}

.section-heading {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  color: #ccc;
}

/* Grid für die Leistungen */
.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch; /* Alle Karten gleich hoch */
}

.leistung-card {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistung-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.leistung-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.leistung-card p {
  font-size: 1rem;
  line-height: 1.4;
  color: #ccc;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Sorgt dafür, dass der Button unten bleibt */
}

.btn-secondary {
  display: inline-block;
  background: #32bbee; /* Hellblauer Button */
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #1F4E8C; /* Dunkleres Blau beim Hover */
  color: #fff;
}

@media (min-width: 768px) {
  /* Optional: Passe die Kartenbreite auf größeren Screens an */
  .leistung-card {
    max-width: 380px;
  }
}

/* webdeisng-prog */

.webdesign-webprog-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  line-height: 1.5;
}

/* Hero Section */
.webdesign-webprog-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.webdesign-webprog-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.webdesign-webprog-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.webdesign-webprog-page .hero-highlights ul {
  list-style: none;    /* Keine Aufzählungszeichen */
  margin: 0;
  padding: 0;
}

.webdesign-webprog-page .hero-highlights li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #fff;
}


/* Allgemeine Abschnitt-Styles für andere .pakete-section */
.webdesign-webprog-page .pakete-section {
  padding: 4rem 1rem;
  text-align: center;
  background: #222222;
}

/* Letzter Abschnitt mit diagonalem Verlauf von Schwarz (oben links) zu Blau (unten rechts) */
.webdesign-webprog-page .last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
}

/* Restliche Styles wie zuvor */
.webdesign-webprog-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.webdesign-webprog-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
}

.webdesign-webprog-page .pakete-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.webdesign-webprog-page .paket-card {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.webdesign-webprog-page .paket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.webdesign-webprog-page .paket-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.webdesign-webprog-page .paket-description {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.webdesign-webprog-page .paket-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  color: #ccc;
  line-height: 1.4;
}

.webdesign-webprog-page .paket-features li {
  margin-bottom: 0.5rem;
}

.webdesign-webprog-page .paket-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.webdesign-webprog-page .btn-primary {
  display: inline-block;
  background: #32bbee;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.webdesign-webprog-page .btn-primary:hover {
  background: #1F4E8C;
  color: #fff;
}

/* brl*/

.branchenloesung-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

/* Global: Alle Listen ohne Punkte */
.branchenloesung-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.branchenloesung-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.branchenloesung-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.branchenloesung-page .intro-text {
  max-width: 850px;
  margin: 0 auto;
}

.branchenloesung-page .intro-heading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.branchenloesung-page .intro-subheading {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.5;
}

/* Allgemeine Abschnitt-Styles */
.branchenloesung-page section {
  padding: 4rem 1rem;
  text-align: center;
}

.branchenloesung-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.branchenloesung-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
}

/* Zwei-Listen Layout (Features, Leistungen) */
.branchenloesung-page .two-column-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Feature-Boxen für die Listen */
.branchenloesung-page .feature-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branchenloesung-page .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.branchenloesung-page .feature-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Preise Section - Grid Layout */
.branchenloesung-page .preise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  justify-content: center;
  align-items: start;
}

/* Preis-Optionen und Preiskalkulation */
.branchenloesung-page .preis-option,
.branchenloesung-page .preis-calc,
.branchenloesung-page .preis-berechnung-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branchenloesung-page .preis-option:hover,
.branchenloesung-page .preis-calc:hover,
.branchenloesung-page .preis-berechnung-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* Nach der Berechnung zwei Boxen nebeneinander */
.branchenloesung-page .preis-berechnung-box {
  /* Wenn du willst, dass die Boxen in einer neuen Zeile unter den Option-Boxen sind, 
     erscheinen sie automatisch in der nächsten Zeile, weil 2 Spalten belegt sind. */
}

.branchenloesung-page .calc-reload-box {
  grid-column: 1 / span 2; /* Nimmt beide Spalten ein */
  text-align: center;
  margin-top: 2rem;
}

.branchenloesung-page .option-title,
.branchenloesung-page .option-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.branchenloesung-page .option-list li {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Kalkulationsformular */
.branchenloesung-page .calc-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.branchenloesung-page .calc-option label {
  margin-left: 0.5rem;
  color: #ccc;
}

/* Buttons */
.branchenloesung-page .btn-primary {
  display: inline-block;
  background: #32bbee;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.branchenloesung-page .btn-primary:hover {
  background: #1F4E8C;
  color: #fff;
}

/* Referenz Section */
.branchenloesung-page .referenz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.branchenloesung-page .referenz-item {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.branchenloesung-page .referenz-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.branchenloesung-page .referenz-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-top: 1rem;
}

/* Rabatt Section (letzter Abschnitt) mit diagonalen Verlauf */
.branchenloesung-page .rabatt-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
}

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

.branchenloesung-page .rabatt-item {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.branchenloesung-page .rabatt-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.branchenloesung-page .rabatt-item h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.branchenloesung-page .rabatt-item p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .branchenloesung-page .preise-grid {
    display: flex !important;       /* Von Grid auf Flex umschalten */
    flex-direction: column !important; 
    align-items: center !important; 
    gap: 2rem !important;           /* Abstand zwischen den Boxen */
  }
  
  /* Sorge dafür, dass alle Boxen die volle Breite nutzen */
  .branchenloesung-page .preise-grid > * {
    width: 100% !important;
    max-width: 500px; /* Optional: Eine max-Breite festlegen */
  }
}
/* Bildbearbeirunt */

.bildbearbeitung-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  line-height: 1.5;
}

/* Global: Alle Listen ohne Punkte */
.bildbearbeitung-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.bildbearbeitung-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.bildbearbeitung-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.bildbearbeitung-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.bildbearbeitung-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

/* Features Section (Wieso ...) */
.bildbearbeitung-page .two-column-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.bildbearbeitung-page .feature-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bildbearbeitung-page .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.bildbearbeitung-page .feature-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Service Sections */
.bildbearbeitung-page .service-section {
  padding: 4rem 1rem;
}

.bildbearbeitung-page .service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.bildbearbeitung-page .service-item.reverse {
  flex-direction: row-reverse;
}

.bildbearbeitung-page .service-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 400px;
  text-align: left;
}

.bildbearbeitung-page .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.bildbearbeitung-page .service-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.bildbearbeitung-page .service-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.bildbearbeitung-page .service-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Price Section (letzte Sektion mit gegeläufigem Verlauf) */
.bildbearbeitung-page .price-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.bildbearbeitung-page .price-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.bildbearbeitung-page .price-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.bildbearbeitung-page .price-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.bildbearbeitung-page .price-box p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  /* Zwei-Listen Layout auf schmalen Bildschirmen untereinander */
  .bildbearbeitung-page .two-column-lists {
    flex-direction: column;
    gap: 2rem;
  }

  .bildbearbeitung-page .feature-box {
    max-width: 100%;
  }

  /* Service-Items auf kleineren Bildschirmen untereinander statt nebeneinander */
  .bildbearbeitung-page .service-item {
    flex-direction: column;
    align-items: stretch;
  }

  .bildbearbeitung-page .service-box {
    flex: 1 1 100%;
  }
}





/* DE-druck+ */

.dreidruck-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  line-height: 1.5;
}

/* Global: Alle Listen ohne Punkte */
.dreidruck-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.dreidruck-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.dreidruck-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.dreidruck-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.dreidruck-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.dreidruck-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
  text-align: center;
}

/* Zwei-Listen Layout (Features) */
.dreidruck-page .two-column-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.dreidruck-page .feature-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dreidruck-page .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.dreidruck-page .feature-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* printing-section, shop-section etc. können auch das gleiche Layout nutzen,
   wenn du sie als feature-box oder ähnliche Strukturen aufbaust. */

/* Für die Druck-Infos */
.dreidruck-page .printing-section,
.dreidruck-page .shop-section {
  padding: 4rem 1rem;
}

.dreidruck-page .shop-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dreidruck-page .shop-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* Service Section */
.dreidruck-page .service-section {
  padding: 4rem 1rem;
}

.dreidruck-page .service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}

.dreidruck-page .service-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 400px;
  text-align: left;
}

.dreidruck-page .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.dreidruck-page .service-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.dreidruck-page .service-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.dreidruck-page .service-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Info Section (letzter Abschnitt) mit gegeläufigem Verlauf */
.dreidruck-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.dreidruck-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dreidruck-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.dreidruck-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  /* Zwei-Listen Layout auf schmalen Bildschirmen untereinander */
  .dreidruck-page .two-column-lists {
    flex-direction: column;
    gap: 2rem;
  }

  .dreidruck-page .feature-box {
    max-width: 100%;
  }

  /* Service-Items auf kleineren Bildschirmen untereinander */
  .dreidruck-page .service-item {
    flex-direction: column;
    align-items: stretch;
  }

  .dreidruck-page .service-box {
    flex: 1 1 100%;
  }
}


/* ed design  */

.dreidesign-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  line-height: 1.5;
}

/* Global: Alle Listen ohne Punkte */
.dreidesign-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.dreidesign-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.dreidesign-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.dreidesign-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.dreidesign-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.dreidesign-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
  text-align: center;
}

/* Zwei-Listen Layout (Features, Modelle) */
.dreidesign-page .two-column-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.dreidesign-page .feature-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dreidesign-page .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.dreidesign-page .feature-list li,
.dreidesign-page .service-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Service oder Modelle sind ähnlich wie Features,
   hier verwenden wir einfach zwei-column-lists und feature-boxen erneut für Konsistenz. */

/* Info-Section mit gegeläufigem Verlauf */
.dreidesign-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.dreidesign-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dreidesign-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.dreidesign-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .dreidesign-page .two-column-lists {
    flex-direction: column;
    gap: 2rem;
  }

  .dreidesign-page .feature-box {
    max-width: 100%;
  }
}


/* social-media */

.socialmedia-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  line-height: 1.5;
}

/* Global: Alle Listen ohne Punkte */
.socialmedia-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.socialmedia-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.socialmedia-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.socialmedia-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.socialmedia-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.socialmedia-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
  text-align: center;
}

/* Zwei-Listen Layout (Features, etc.) */
.socialmedia-page .two-column-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.socialmedia-page .feature-box,
.socialmedia-page .preis-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socialmedia-page .feature-box:hover,
.socialmedia-page .preis-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.socialmedia-page .feature-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Preise-Grid */
.socialmedia-page .preise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.socialmedia-page .preis-box h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.socialmedia-page .preis-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.socialmedia-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.socialmedia-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socialmedia-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.socialmedia-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Button */
.socialmedia-page .btn-primary {
  display: inline-block;
  background: #32bbee;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.socialmedia-page .btn-primary:hover {
  background: #1F4E8C;
  color: #fff;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .socialmedia-page .two-column-lists {
    flex-direction: column;
    gap: 2rem;
  }

  .socialmedia-page .feature-box {
    max-width: 100%;
  }

  .socialmedia-page .preise-grid {
    grid-template-columns: 1fr;
  }
}


/* video  */

.video-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Global: Alle Listen ohne Punkte */
.video-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.video-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.video-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.video-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.video-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.video-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
  text-align: center;
}

/* Zwei-Listen Layout (Features, etc.) */
.video-page .two-column-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.video-page .feature-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-page .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.video-page .feature-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Info Box mit letztem Abschnitt im gegeläufigen Verlauf */
.video-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.video-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.video-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .video-page .two-column-lists {
    flex-direction: column;
    gap: 2rem;
  }

  .video-page .feature-box {
    max-width: 100%;
  }
}




/* grafik  */

.grafikdesign-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Global: Alle Listen ohne Punkte */
.grafikdesign-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.grafikdesign-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.grafikdesign-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.grafikdesign-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.grafikdesign-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.grafikdesign-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
  text-align: center;
}

/* Zwei-Listen Layout (Features) */
.grafikdesign-page .two-column-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.grafikdesign-page .feature-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grafikdesign-page .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.grafikdesign-page .feature-list li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.grafikdesign-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.grafikdesign-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grafikdesign-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.grafikdesign-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .grafikdesign-page .two-column-lists {
    flex-direction: column;
    gap: 2rem;
  }

  .grafikdesign-page .feature-box {
    max-width: 100%;
  }
}



/* anfrage  */

.anfrage-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Global: Keine Listenpunkte */
.anfrage-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.anfrage-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.anfrage-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.anfrage-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.anfrage-page .status-msg {
  font-size: 1.5rem;
}

.anfrage-page .success-msg {
  color: #009640;
}

.anfrage-page .error-msg {
  color: red;
}

/* Form Section */
.anfrage-page .form-section {
  padding: 4rem 1rem;
  text-align: center;
}

.anfrage-page .form-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anfrage-page .form-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

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

.anfrage-page .form-col {
  flex: 1 1 301px;
  display: flex;
  flex-direction: column;
}

.anfrage-page label {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.anfrage-page input[type="text"],
.anfrage-page input[type="number"],
.anfrage-page input[type="email"],
.anfrage-page textarea {
  background: #333;
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.anfrage-page input[type="text"]:focus,
.anfrage-page input[type="number"]:focus,
.anfrage-page input[type="email"]:focus,
.anfrage-page textarea:focus {
  background: #444;
  outline: none;
}

.anfrage-page textarea {
  height: 100px;
  resize: vertical;
}

.anfrage-page .checkbox-label {
  display: flex;
  align-items: center;
}

.anfrage-page .checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.anfrage-page .error-text {
  color: red;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Button */
.anfrage-page .btn-primary {
  display: inline-block;
  background: #32bbee;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1.1rem;
}

.anfrage-page .btn-primary:hover {
  background: #1F4E8C;
  color: #fff;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.anfrage-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.anfrage-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anfrage-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.anfrage-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .anfrage-page .form-row {
    flex-direction: column;
  }
  
  .anfrage-page .form-col {
    width: 100%;
  }
}


/* reff */

.referenzen-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Global: Alle Listen ohne Punkte (falls benötigt) */
.referenzen-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.referenzen-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.referenzen-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.referenzen-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.referenzen-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.referenzen-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
  text-align: center;
}

/* Referenzen Grid */
.referenzen-page .ref-overview-section {
  padding: 4rem 1rem;
  text-align: center;
}

.referenzen-page .ref-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.referenzen-page .ref-box {
  background: #1a1a1a;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 301px;
  padding: 1rem;
}

.referenzen-page .ref-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.referenzen-page .ref-link {
  text-decoration: none;
  color: #fff;
  display: block;
}

.referenzen-page .ref-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.referenzen-page .ref-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.referenzen-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.referenzen-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.referenzen-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.referenzen-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .referenzen-page .ref-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .referenzen-page .ref-box {
    max-width: 100%;
  }
}


/* reff webd */

.webdesign-ref-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Global: Keine Listenpunkte */
.webdesign-ref-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.webdesign-ref-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.webdesign-ref-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.webdesign-ref-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Abschnitt-Überschriften */
.webdesign-ref-page .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.webdesign-ref-page .section-intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
  text-align: center;
}

/* Referenzen Grid */
.webdesign-ref-page .ref-overview-section {
  padding: 4rem 1rem;
  text-align: center;
}

.webdesign-ref-page .ref-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.webdesign-ref-page .ref-box {
  background: #1a1a1a;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 301px;
  padding: 1rem;
}

.webdesign-ref-page .ref-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.webdesign-ref-page .ref-link {
  text-decoration: none;
  color: #fff;
  display: block;
}

.webdesign-ref-page .ref-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.webdesign-ref-page .ref-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.webdesign-ref-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.webdesign-ref-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webdesign-ref-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.webdesign-ref-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .webdesign-ref-page .ref-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .webdesign-ref-page .ref-box {
    max-width: 100%;
  }
}


/* ref-bild b */

.bildbearbeitung-ref-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Hero Section */
.bildbearbeitung-ref-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.bildbearbeitung-ref-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.bildbearbeitung-ref-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Intro Section */
.bildbearbeitung-ref-page .intro-section {
  padding: 4rem 1rem;
  text-align: center;
}

.bildbearbeitung-ref-page .intro-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bildbearbeitung-ref-page .intro-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.bildbearbeitung-ref-page .intro-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Referenzen Grid */
.bildbearbeitung-ref-page .ref-grid-section {
  padding: 4rem 1rem;
  text-align: center;
}

.bildbearbeitung-ref-page .ref-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bildbearbeitung-ref-page .ref-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.bildbearbeitung-ref-page .ref-box {
  background: #1a1a1a;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 400px;
  padding: 1rem;
}

.bildbearbeitung-ref-page .ref-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.bildbearbeitung-ref-page .ref-heading {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.bildbearbeitung-ref-page .ref-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.bildbearbeitung-ref-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.bildbearbeitung-ref-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bildbearbeitung-ref-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.bildbearbeitung-ref-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .bildbearbeitung-ref-page .ref-row {
    flex-direction: column;
    gap: 2rem;
  }

  .bildbearbeitung-ref-page .ref-box {
    max-width: 100%;
  }
}


/* grafikdesig */

.grafikdesign-ref-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Hero Section */
.grafikdesign-ref-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.grafikdesign-ref-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.grafikdesign-ref-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Intro Section */
.grafikdesign-ref-page .intro-section {
  padding: 4rem 1rem;
  text-align: center;
}

.grafikdesign-ref-page .intro-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grafikdesign-ref-page .intro-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.grafikdesign-ref-page .intro-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Referenzen Grid */
.grafikdesign-ref-page .ref-grid-section {
  padding: 4rem 1rem;
  text-align: center;
}

.grafikdesign-ref-page .ref-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.grafikdesign-ref-page .ref-box {
  background: #1a1a1a;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 400px;
  padding: 1rem;
}

.grafikdesign-ref-page .ref-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.grafikdesign-ref-page .ref-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.grafikdesign-ref-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.grafikdesign-ref-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grafikdesign-ref-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.grafikdesign-ref-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .grafikdesign-ref-page .ref-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .grafikdesign-ref-page .ref-box {
    max-width: 100%;
  }
}


/* impressum  */

.impressum-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Hero Section */
.impressum-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.impressum-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.impressum-page .hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Impressum-Abschnitt */
.impressum-page .impressum-section {
  padding: 4rem 1rem;
}

.impressum-page .impressum-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impressum-page .impressum-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.impressum-page .impressum-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.impressum-page .impressum-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.impressum-page .impressum-box a {
  color: #32bbee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum-page .impressum-box a:hover {
  color: #1F4E8C;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.impressum-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.impressum-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impressum-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.impressum-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .impressum-page .impressum-box,
  .impressum-page .info-box {
    padding: 1.5rem;
  }

  .impressum-page .impressum-box h2 {
    font-size: 1.6rem;
  }
}


/* datenschut */

.datenschutz-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Hero Section */
.datenschutz-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.datenschutz-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.datenschutz-page .hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Datenschutzerklärung */
.datenschutz-page .datenschutz-section {
  padding: 4rem 1rem;
}

.datenschutz-page .datenschutz-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.datenschutz-page .datenschutz-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.datenschutz-page .datenschutz-box h2,
.datenschutz-page .datenschutz-box h3,
.datenschutz-page .datenschutz-box h4 {
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.datenschutz-page .datenschutz-box h2 {
  font-size: 1.8rem;
}

.datenschutz-page .datenschutz-box h3 {
  font-size: 1.4rem;
}

.datenschutz-page .datenschutz-box h4 {
  font-size: 1.2rem;
}

.datenschutz-page .datenschutz-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.datenschutz-page .datenschutz-box ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.datenschutz-page .datenschutz-box li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.datenschutz-page .datenschutz-box a {
  color: #32bbee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.datenschutz-page .datenschutz-box a:hover {
  color: #1F4E8C;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.datenschutz-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.datenschutz-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.datenschutz-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.datenschutz-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .datenschutz-page .datenschutz-box {
    padding: 1.5rem;
  }

  .datenschutz-page .datenschutz-box h2 {
    font-size: 1.6rem;
  }
}



/* agb  */
.agb-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Hero Section */
.agb-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.agb-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.agb-page .hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* AGB Abschnitt */
.agb-page .agb-section {
  padding: 4rem 1rem;
}

.agb-page .agb-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agb-page .agb-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.agb-page .agb-box h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.agb-page .agb-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.agb-page .agb-box a {
  color: #32bbee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agb-page .agb-box a:hover {
  color: #1F4E8C;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.agb-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.agb-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agb-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.agb-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .agb-page .agb-box {
    padding: 1.5rem;
  }

  .agb-page .agb-box h2 {
    font-size: 1.6rem;
  }
}


/* cookie setting  */

.cookie-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Hero Section */
.cookie-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.cookie-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.cookie-page .hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Cookie Einstellungen */
.cookie-page .cookie-section {
  padding: 4rem 1rem;
  text-align: center;
}

.cookie-page .cookie-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-page .cookie-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.cookie-page .cookie-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cookie-page .cookie-box h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cookie-page .cookie-option {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-page .cookie-option input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.2);
}

.cookie-page .cookie-option label {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.4;
}

.cookie-page .cookie-option a {
  color: #32bbee;
  text-decoration: underline;
  margin-left: 0.3rem;
  transition: color 0.3s ease;
}

.cookie-page .cookie-option a:hover {
  color: #1F4E8C;
}

.cookie-page .cookie-info {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.cookie-page .btn-primary {
  display: inline-block;
  background: #32bbee;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.cookie-page .btn-primary:hover {
  background: #1F4E8C;
  color: #fff;
}

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.cookie-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.cookie-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.cookie-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .cookie-page .cookie-box {
    padding: 1.5rem;
  }
}


/* Footer */

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  padding: 2rem 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  z-index: 9999;
}

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

.cookie-banner-heading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cookie-banner-subheading {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cookie-banner-text {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-banner-links {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cookie-banner-links a {
  color: #32bbee;
  text-decoration: underline;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.cookie-banner-links a:hover {
  color: #1F4E8C;
}

.cookie-banner-powered {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.cookie-banner-powered a {
  color: #32bbee;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner-powered a:hover {
  color: #1F4E8C;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-banner-buttons button {
  background: #32bbee;
  border: none;
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.cookie-banner-buttons button:hover {
  background: #1F4E8C;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons button {
    width: 100%;
  }
}


/* speedtest */
.speedtest-page {
  background: #222222;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
}

/* Hero Section */
.speedtest-page .hero-section {
  background: linear-gradient(135deg, #1F4E8C 0%, #000 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.speedtest-page .hero-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.speedtest-page .hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Speedtest Section */
.speedtest-page .speedtest-section {
  padding: 4rem 1rem;
  text-align: center;
}

.speedtest-page .speedtest-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speedtest-page .speedtest-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

#startStopBtn {
  display:inline-block;
  margin:1em auto 2em auto;
  color:#357F4E;
  background-color:rgba(0,0,0,0);
  border:0.15em solid #357F4E;
  border-radius:0.3em;
  transition:all 0.3s;
  box-sizing:border-box;
  width:8em; height:3em;
  line-height:2.7em;
  cursor:pointer;
  box-shadow: 0 0 0 rgba(0,0,0,0.1), inset 0 0 0 rgba(0,0,0,0.1);
  font-weight: bold;
  font-size:1.1rem;
}

#startStopBtn:hover {
  box-shadow: 0 0 2em rgba(0,0,0,0.1), inset 0 0 1em rgba(0,0,0,0.1);
}

#startStopBtn.running {
  background-color:#FFB7BB;
  border-color:#FFB7BB;
  color:#7F3639;
}

#startStopBtn:before {
  content:"Start";
}

#startStopBtn.running:before {
  content:"Abort";
}

#test {
  margin-top:2em;
  margin-bottom:2em;
}

.testArea {
  display:inline-block;
  width:16em;
  height:12.5em;
  position:relative;
  box-sizing:border-box;
  margin:1em;
}

.testName {
  position:absolute;
  top:0.1em; left:0;
  width:100%;
  font-size:1.4em;
  z-index:9;
  color:#fff;
}

.meterText {
  position:absolute;
  bottom:1.55em; left:0;
  width:100%;
  font-size:2.5em;
  z-index:9;
  color:#fff;
}

.meterText:empty:before {
  content:"0.00";
}

.unit {
  position:absolute;
  bottom:2em; left:0;
  width:100%;
  z-index:9;
  color:#ccc;
}

.testGroup {
  display:inline-block;
  vertical-align: top;
}

#ipArea {
  margin-top:2em;
  color:#ccc;
  font-size:1rem;
}

.hero-content .success-message {
  color: #00b45d;
}

.hero-content .error-message {
  color: red;
} 

/* Letzter Abschnitt mit gegeläufigem Verlauf */
.speedtest-page .info-section.last-section {
  background: linear-gradient(135deg, #000 0%, #1F4E8C 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.speedtest-page .info-box {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speedtest-page .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.speedtest-page .info-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media (max-width:768px) {
  .testGroup {
    display:block;
    margin: 0 auto;
  }
  #startStopBtn {
    width: 100%;
  }
}


/* Footer */
.site-footer {
  background: var(--header-footer-bg);
  padding: 2rem 0;
  border-top: 2px solid var(--primary-color);
  color: var(--header-footer-text);
}

.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;
  color: var(--header-footer-text);
}

.footer-column p, 
.footer-column li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.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);
  }
}
