.elementor-kit-69{--e-global-color-primary:#000000;--e-global-color-secondary:#FAF9D7;--e-global-color-text:#090901;--e-global-color-accent:#C5F600;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Outfit";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Outfit";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Outfit";--e-global-typography-accent-font-weight:500;}.elementor-kit-69 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===== Grundlayout des Akkordeons ===== */
.custom-accordion .acc-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: #FAF9D7; /* inaktiv */
}

/* Aktiv (ausgeklappt) = grüner Hintergrund */
.custom-accordion .acc-item.open {
  background: #C5F600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Header ===== */
.custom-accordion .acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  cursor: pointer;
  transition: background 0.3s ease;
  background: transparent; /* kein extra Layer */
}

/* ===== Linke Seite: Nummer + Titel ===== */
.custom-accordion .acc-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Nummer (Badge) */
.custom-accordion .num {
  background: #C5F600;
  color: #000;
  font-weight: 600;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
}
.custom-accordion .acc-item.open .num {
  background: #111;
  color: #fff;
}

/* Titel */
.custom-accordion .title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

/* ===== Icon rechts ===== */
.custom-accordion .acc-icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.custom-accordion .acc-item.open .acc-icon {
  transform: rotate(180deg);
}

/* ===== Inhalt (ausklappbarer Bereich) ===== */
.custom-accordion .acc-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

/* Geöffnet: Text sichtbar */
.custom-accordion .acc-item.open .acc-content {
  opacity: 1;
  max-height: 300px; /* anpassen je nach Textlänge */
  padding: 0 28px 28px 28px;
}

.custom-accordion .acc-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}/* End custom CSS */