.elementor-17571 .elementor-element.elementor-element-7146fb47{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-17571 .elementor-element.elementor-element-3f58a90c{--display:flex;--margin-top:0px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;}.elementor-17571 .elementor-element.elementor-element-252259f9 img{width:26%;}.elementor-17571 .elementor-element.elementor-element-b963177{--display:flex;}.elementor-17571 .elementor-element.elementor-element-3991f58f{--display:flex;}.elementor-17571 .elementor-element.elementor-element-5239f80{--display:flex;}@media(min-width:768px){.elementor-17571 .elementor-element.elementor-element-7146fb47{--width:100vw;}}@media(min-width:2400px){.elementor-17571 .elementor-element.elementor-element-7146fb47{--min-height:100vh;}}@media(max-width:1024px){.elementor-17571 .elementor-element.elementor-element-252259f9 img{width:40%;}}@media(max-width:880px){.elementor-17571 .elementor-element.elementor-element-252259f9 img{width:300px;}}@media(max-width:767px){.elementor-17571 .elementor-element.elementor-element-7146fb47{--min-height:100vh;}.elementor-17571 .elementor-element.elementor-element-252259f9 > .elementor-widget-container{margin:0px 0px -27px 0px;}.elementor-17571 .elementor-element.elementor-element-252259f9 img{width:60%;}}/* Start custom CSS for container, class: .elementor-element-7146fb47 *//* Grundlayout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden; /* Desktop: kein Scrollen */
}

/* Mobil: Scrollen erlauben */
@media (max-width: 767px) {
  html, body {
    overflow: auto;
  }
}

/* Animierter Hintergrund */
body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #489934, #248754, #0e6d78, #064e9c);
  background-size: 300% 300%;
  animation: animatedGradient 18s ease-in-out infinite;
  padding: 20px;
  box-sizing: border-box;
  z-index: 0;
}

@keyframes animatedGradient {
  0%   { background-position: 30% 70%; }
  50%  { background-position: 70% 30%; }
  100% { background-position: 30% 70%; }
}

body::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 10%, transparent 70%);
  animation: waveMotion 20s ease-in-out infinite;
  opacity: 0.25;
  z-index: 0;
}

@keyframes waveMotion {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(10px, 10px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Newsletter-Wrapper */
.newsletter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}

/* Glasbox */
.newsletter-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 30px 25px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  color: white;
}

/* Überschrift */
.newsletter-box h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Unterzeile */
.newsletter-box p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
  line-height: 1.4;
}

/* Formular */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Eingabe */
.newsletter-form input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: #064e9c;
  width: 100%;
  box-sizing: border-box;
}

/* Button */
.newsletter-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #489934;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.newsletter-form button:hover {
  background-color: #064e9c;
}

/* Checkbox-Bereich */
.newsletter-checkbox {
  margin-top: 12px;
  text-align: left;
  font-size: 0.8rem;
  color: white;
  line-height: 1.5;
}

.newsletter-checkbox input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
}

.checkbox-text {
  color: white;
  font-weight: normal;
  display: inline;
}

/* Hinweis & Link */
.newsletter-box small {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.newsletter-box small a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 767px) {
  .newsletter-box {
    padding: 24px 18px;
  }

  .newsletter-box h2 {
    font-size: 1.4rem;
  }

  .newsletter-box p {
    font-size: 0.95rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    font-size: 0.95rem;
  }
}/* End custom CSS */