body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
:root {
  --color-primary: #2F3B7D;
  --color-primary-hover: #465191;
  --color-white: #ffffff;
}

/* Reset & Grundstile */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000; /* alles schwarz */
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links ohne Unterstreichung, schwarz */
a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover,
a:focus {
  color: #333333;
  text-decoration: none;
  outline: none;
}

/* AbsÃ¤tze */
p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #000000;
}

.blocktext {
  text-align: justify;
  hyphens: auto;
}

/* Listen ohne Punkte */
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Buttons */
.button,
.cta-button,
.cta-button.outlined,
.contact-cta-button {
  display: inline-block;       /* wichtig fÃ¼r zentrierte Buttons */
  max-width: 250px;            /* maximale Breite */
  width: auto;                 /* passt sich dem Inhalt an */
  border-radius: 22px;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.3s ease;
}

/* Standard Hintergrundfarbe */
.button,
.cta-button {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
}

/* Hover-Effekt fÃ¼r alle CTAs auÃŸer .outlined */
.cta-button:not(.outlined):hover,
.cta-button:not(.outlined):focus {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
  outline: none;
}

/* Outlined Buttons */
.cta-button.outlined {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.cta-button.outlined:hover,
.cta-button.outlined:focus {
  background-color: var(--color-primary);
  color: #fff;
  outline: none;
}

/* Kontakt Button */
.contact-cta-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.contact-cta-button i {
  margin-left: 10px;
}

.contact-cta-button:hover,
.contact-cta-button:focus {
  background-color: var(--color-primary-hover);
  color: #fff;
  outline: none;
}

/* Container zentriert */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

/* Bilder responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

/* Grund-Layout fÃ¼r Widgets */
.ce_form .widget {
  margin-bottom: 1.5rem;
  max-width: 600px; /* auf groÃŸen Screens begrenzt */
  width: 100%;      /* auf kleinen Screens volle Breite */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;  /* etwas Innenabstand auf kleinen Screens */
}

/* Inputs, Textareas, Selects */
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  color: #000;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

/* Fokuszustand */
input:focus,
textarea:focus,
select:focus {
  border-color: #000;
  outline: none;
}

/* Radio-Buttons */
#kontaktwahl {
  display: flex;
  flex-wrap: wrap; /* sorgt dafÃ¼r, dass sie umbrechen kÃ¶nnen */
  justify-content: center;
  gap: 1rem; /* statt margin-right */
  margin-bottom: 1.5rem;
}

#kontaktwahl label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

#kontaktwahl input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  cursor: pointer;
}

/* Drop-Down */
.widget-select {
  position: relative;
  display: block;
  width: 100%;
}

.widget-select select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
  appearance: none;
  box-sizing: border-box;
  color: #333;
  cursor: pointer;
}

.widget-select .custom-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #666;
  pointer-events: none;
}

/* Farben fÃ¼r leere Option */
select:invalid {
  color: #999;
}

/* Submit-Button zentrieren */
.form-submit-wrapper {
  text-align: center;
}

.form-submit-wrapper .submit.button {
  display: inline-block;
  margin: 0 auto;
}

/* Tablets */
@media (max-width: 768px) {
  .ce_form .widget {
    padding: 0 2rem;
  }
}

/* Navigationsleiste */
.navbar {
  min-height: 55px;
  top: 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8); /* WeiÃŸ mit 80 % Deckkraft */
  backdrop-filter: blur(8px); /* Milchiger Effekt */
  -webkit-backdrop-filter: blur(8px); /* FÃ¼r Safari */
  border-bottom: 1px solid #eee;
  z-index: 2000;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform: translateY(0);
  opacity: 1;
}

.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  transform: translateY(0);
  opacity: 1;
}

.navbar.is-sticky.animate-in {
  transform: translateY(-10px);
  opacity: 0.9;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo links, MenÃ¼ in der Mitte, Button rechts */
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  position: relative;
}

.navbar-logo img {
  height: 30px;
  display: block;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 42px;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: center;
}

.navbar-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  padding: 4px 6px;
  transition: color 0.2s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
  color: #888;
  outline: none;
}

/* Dropdown-UntermenÃ¼s */
.navbar-menu li {
  position: relative;
}

.navbar-menu ul.level_2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-menu li:hover > ul.level_2 {
  display: block;
}

.navbar-menu ul.level_2 li a {
  display: block;
  padding: 8px 15px;
  font-size: 0.95rem;
  color: #000;
  text-decoration: none;
  transition: background 0.2s ease;
}

.navbar-menu ul.level_2 li a:hover {
  background: #f5f5f5;
}

/* Burger-Icon */
.burger {
  display: none; /* Standard: versteckt */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100; /* Ã¼ber Navbar */
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MenÃ¼ mobil */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 55px; /* HÃ¶he Navbar */
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95); /* leicht transparent */
    backdrop-filter: blur(12px); /* milchiger Effekt */
    -webkit-backdrop-filter: blur(12px); /* Safari */
    padding: 20px;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15); /* sanfter Schatten */
    border-radius: 0 0 12px 12px;
    z-index: 2000;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform: translateY(-10px);
    opacity: 0;
  }

  /* Wenn MenÃ¼ geÃ¶ffnet */
  .navbar-menu.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  /* Links etwas grÃ¶ÃŸer und schÃ¶ner klickbar */
  .navbar-menu li a {
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .burger {
    display: flex;
  }

  .navbar-cta {
    display: none; /* Button auf Mobil optional ausblenden */
  }
}

/* Animation fÃ¼r Burger -> X */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero-Bereich */
.hero-header {
  position: relative;
  max-height: 100vh;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; /* Textfarbe Ã¼ber Bild */
  overflow: hidden;
}

.hero-header .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: -1; /* Bild hinter Content */
}

.hero-section {
  background-color: #f5f8fa; /* helles blau-beige */
  padding: 80px 20px;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Artikeltrennung */
.mod_article {
  position: relative; /* fÃ¼r den Trenner */
  padding-bottom: 15px; /* etwas Platz unten fÃ¼r den Streifen */
  margin-bottom: 0; /* kein zusÃ¤tzlicher Abstand */
}

.mod_article::after {
  content: "";
  display: block;
  height: 15px;           /* HÃ¶he des Streifens, kannst du noch kleiner machen z.B. 1px */
  background-color: white;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Layout Artikel - Warum? */
.va-section {
  background-color: #f4f4f9;
  padding: 0;
  margin: 0;
}

.va-section2 {
  background-color: #f5f8fa;
  padding: 0;
  margin: 0;
}

.va-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 500px;
  flex-wrap: wrap;
}

.va-image {
  flex: 1 1 50%;
  overflow: hidden;
}

.va-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.va-content {
  flex: 1 1 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}

.va-intro {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.va-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.va-benefits {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.va-benefits li {
  margin-bottom: 0.8rem;
  padding-left: 1.5em;
  position: relative;
}

.va-benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Layout Artikel Ãœber mich */
.section-about {
  background-color: #f5f8fa; /* sehr helles Blau-Beige */
  padding: 60px 20px;
  border: 0;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-center {
  margin-top: 2rem;
  text-align: center;
}

.about-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Bildstapel */
.image-stack {
  overflow: hidden;
  object-fit: cover;
  display: block;
  position: relative;
  width: 400px; /* Breite des gesamten Stapels */
  height: 350px; /* HÃ¶he fÃ¼r alle Frames */
}

.image-stack .apple-frame:not(:nth-child(4)):hover {
  transform: translateY(-30px); /* Bild rutscht nach oben */
}

/* Gestaffelte Apple-Fenster im Stapel */
.image-stack .apple-frame:nth-child(1) { position: absolute; top: 30px;   right: 30px;   z-index: 1; }
.image-stack .apple-frame:nth-child(2) { position: absolute; top: 80px;  right: 80px;  z-index: 2; }
.image-stack .apple-frame:nth-child(3) { position: absolute; top: 120px;  right: 120px;  z-index: 3; }
.image-stack .apple-frame:nth-child(4) { position: absolute; top: 160px; right: 160px; z-index: 4; }

/* Apple-Fenster */
.apple-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ccc;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  width: 220px;
  height: 140px;
  background-color: #fff;
}

/* Header */
.apple-header {
  background-color: #e0e0e0;
  height: 26px; /* etwas niedriger */
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: space-between;
}

/* Buttons kleiner */
.apple-buttons span {
  display: inline-block;
  width: 10px;  /* kleiner */
  height: 10px; /* kleiner */
  border-radius: 50%;
  margin-right: 4px; /* enger zusammen */
}
.apple-buttons .red { background-color: #ff605c; }
.apple-buttons .yellow { background-color: #ffbd44; }
.apple-buttons .green { background-color: #00ca56; }

/* URL-Leiste kleiner */
.apple-url {
  background-color: #fff;
  height: 10px;  /* kleiner */
  width: 55%;    /* etwas schmaler */
  border-radius: 5px;
  margin: 0 auto;
}

/* Bild */
.apple-frame img {
  display: block;
  width: 100%;
  height: calc(100% - 26px); /* ResthÃ¶he nach Header anpassen */
  object-fit: cover;
}

/* Responsive: auf schmalen Screens untereinander */
@media (max-width: 768px) {
  .angebot-container {
    flex-direction: column;
  }
  .angebot-bilder {
    justify-content: flex-start;
    padding: 0;           /* Abstand vom Rand */
  }
  
  .image-stack {
    width: 330px; /* Breite des gesamten Stapels */
    height: 300px; /* HÃ¶he fÃ¼r alle Frames */
  }
  
  .image-stack .apple-frame:nth-child(1) { position: absolute; top: 0;   right: 0;   z-index: 1; }
  .image-stack .apple-frame:nth-child(2) { position: absolute; top: 30px;  right: 30px;  z-index: 2; }
  .image-stack .apple-frame:nth-child(3) { position: absolute; top: 60px;  right: 60px;  z-index: 3; }
  .image-stack .apple-frame:nth-child(4) { position: absolute; top: 90px; right: 90px; z-index: 4; }

}

/* Layout Leistungen */
/* Grundlegendes Styling der Section */
.services-section {
  background-color: #f4f4f9;
  padding: 60px 20px;
}

/* Titel zentriert */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #000;
}

/* Die flexbox mit den Boxen wird zum scrollenden Track */
.service-carousel {
  height: 380px;
  padding-top: 20px;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  cursor: none;
}

.service-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
}

/* Flex-Container fÃ¼r die Boxen + Link */
.service-link {
  text-decoration: none;
  color: inherit;
}

.service-link:hover .service-box {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-box {
  transition: transform 0.3s ease;
  transform-origin: center bottom;
}

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch; /* Wichtig: sorgt fÃ¼r gleiche HÃ¶he */
}

/* Einzelne Boxen */
.service-box {
  flex: 1 1 300px;
  max-width: 350px;
  min-height: 300px; 
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Text in Box */
.service-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}

/* Die Box bekommt zentrierten Inhalt */
.service-box {
  text-align: center;
}

/* Hintergrundfarben mit Farbverlauf */
.box-blue {
  background: linear-gradient(135deg, #cfe9ff, #93c5fd);
}

.box-purple {
  background: linear-gradient(135deg, #e6d7ff, #b095f7);
}

.box-orange {
  background: linear-gradient(135deg, #ffe2c6, #f9ab5f);
}

.box-blue-transparent {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.8), rgba(203, 213, 225, 0.8));
  border: 2px dashed #94a3b8;
  color: #94a3b8;
  box-shadow: none;
}

.service-icon {
  font-size: 48px;
  color: inherit; /* Farbe wird pro Box separat gesetzt */
  margin-bottom: 20px;
}

.icon-huge {
  font-size: 5rem; /* deutlich grÃ¶ÃŸer */
  color: #555; /* neutral, wie im Original */
  margin: 1.5rem 0;
  display: block;
}

/* Farblich individuelle Icons */
.icon-blue {
  color: #1e40af;
}

.icon-purple {
  color: #6d28d9;
}

.icon-orange {
  color: #ea580c;
}

.icon-grey {
  color: #94a3b8; /* passt zum Rand/Text der neuen Box */
}

/* Gemeinsamer Stil */
.reference-item {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  box-sizing: border-box;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

/* Hover */
.reference-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Logo → sauber zentriert */
.reference-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.reference-logo img,
.placeholder-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* Platzhalter-Icon */
.placeholder-icon {
  font-size: 100px;
  color: #9ca3af;
}

/* Text & Titel */
.reference-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.reference-text {
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.reference-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Startseite: drei Spalten Grid */
.references-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  margin-top: 30px;
}

/* Items behalten das gemeinsame Design – keine Überschreibung nötig */
.references-grid .reference-item {
  text-align: center;
  min-width: 250px;
}

.reference-placeholder-link {
  display: block;
  height: 100%;
}

.reference-placeholder-link .reference-item {
  height: 100%;
}

@media (max-width: 900px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Unterseite: zwei Spalten, gleiche Höhe */
.reference-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: stretch; /* sorgt für gleiche Höhe */
}

/* Kontakt */
.contact-cta-section {
  background: linear-gradient(135deg, #d0eaff, #f0fbff); /* oben links dunkler, unten rechts heller */
  text-align: center;
  padding: 60px 20px; /* mehr Platz um den Inhalt */
}

.contact-cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: 20px;
}

.contact-cta-text {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin-bottom: 30px;
}

/* FOOTER */
.site-footer {
  background-color: #f8fafc;
  padding: 60px 20px 30px;
  color: #4b5563;
  font-size: 0.95rem;
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #1e293b;
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  text-decoration: none;
  color: #334155;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Container */
.referenzen-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 1rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #1d1d1f;
  text-align: center;
}

/* Ãœberschriften */
h1, h2, h3 {
  font-weight: 600;
  color: #000000;
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* min 1.8rem, max 2.5rem, dazwischen flexibel */
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 10px;
  color: #222;
  flex-shrink: 0;
}

/* Platzhalter-Box */
.referenzen-placeholder-box {
  border: 1px solid #ccc;
  background-color: #f5f5f7;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  color: #a0a0a5;
  font-style: italic;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}

.referenzen-placeholder {
  border: 1px solid #ccc;
  background-color: #f5f5f7;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #6e6e73;
  font-size: 1.1rem;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}

/* Grid fÃ¼r Platzhalter */
.referenzen-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  justify-items: center;
}

/* Formular */

/* Checkbox-MenÃ¼ */
/* Checkbox-Container (fieldset) â€“ kein Standardrahmen */
.checkbox_container {
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
}

/* Ã„uÃŸere .widget wie bei allen Feldern, volle Breite */
.widget.widget-checkbox {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Kasten-Look nur um den Inhalt (span im fieldset) */
.checkbox_container span {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-sizing: border-box;
}

/* Checkbox selbst */
.checkbox_container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  cursor: pointer;
  margin: 0; /* Browser-Default-Abstand entfernen */
}

/* Label-Text */
.checkbox_container label {
  flex: 1;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

/* Container fÃ¼r Altcha-Widget und Icon */
.altcha-container {
  position: relative;      /* Icon kann relativ zur Box positioniert werden */
  display: inline-block;   
  width: 100%;
  pointer-events: none;    /* Klick fÃ¤llt durch, nur Checkbox bleibt aktiv */
}

.altcha-container altcha-widget {
  display: block;
  width: 100%;
  pointer-events: auto;    /* Checkbox klickbar */
}

/* Icon rechts Ã¼ber der Box */
.altcha-container .altcha-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2em;
  font-style: normal; /* verhindert Kursiv */
  color: #666;
  pointer-events: none; /* Klick fÃ¤llt durch */
}

/* Responsiv ab ca. Tablet/Smartphone */
@media (max-width: 600px) {
  .altcha-icon {
    position: static;          /* aus absolute lÃ¶sen */
    margin-left: 0.5rem;       /* Abstand nach der Checkbox/Label */
    transform: none;           /* kein translate mehr */
    display: inline-flex;      /* sitzt automatisch neben dem Text */
    vertical-align: middle;
  }

  .altcha-container {
    align-items: center;       /* zentrieren */
  }
}

/* Button */
.bewertung-form button {
  background-color: var(--color-primary, #0071e3);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  cursor: pointer;
  align-self: flex-start;
}

.bewertung-form button:hover {
  background-color: var(--color-primary-hover, #005bb5);
  color: var(--color-white, #fff);
  outline: none;
}

/* Sterne Container */
#starRating {
  display: flex;
  justify-content: center; /* zentriert */
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #ccc;
  font-size: 2rem;
  user-select: none;
}

/* Einzelne Sterne (gefÃ¼llt durch .fas) */
#starRating i {
  cursor: pointer;
  transition: color 0.2s ease;
  color: #ccc;
}

/* Hover-Zustand */
#starRating i.hover,
#starRating i:hover {
  color: #facc15; /* Apple-Gold */
}

/* AusgewÃ¤hlte Sterne (bleiben golden) */
#starRating i.selected {
  color: #facc15;
}

/* Abstand zum Formular */
.mod_form__stars {
  margin-bottom: 1.25rem;
}

.widget label {
  display: inline-block;
  margin-bottom: 0.25rem; /* Abstand nach unten */
}

/* Verstecktes Eingabefeld */
#ratingInput {
  display: none;
}
  
.thankyou-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f5fbff, #e6f7ff);
  border-radius: 30px;
  max-width: 700px;
  margin: 5rem auto;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.15);
  text-align: center;
  color: #0c4a6e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.thankyou-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0c4a6e;
}

.thank-you-text {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------ */
/* Vollbreiter Header, absolut unabhÃ¤ngig von Eltern */
/* ------------ */
.about-header {
  left: 50%;
  right: 50%;
  width: 100vw;
  padding: 0;
}

.about-header img {
  width: 100%;
  height: 400px;       /* Passe die HÃ¶he an, oder nutze auto */
  object-fit: cover;
  display: block;
}

/* FAQ */
/* Container-Styling fÃ¼r FAQ */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #333;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 15px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 5px 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-question:hover {
  background-color: #f1f1f1;
  transform: scale(1.02);
}

.faq-answer {
  display: none; /* StandardmÃ¤ÃŸig ausgeblendet */
  padding: 15px;
  background-color: #fff;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}
