.elementor-17616 .elementor-element.elementor-element-11cbba7f{--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-17616 .elementor-element.elementor-element-20d48e52{--display:flex;--margin-top:0px;--margin-bottom:30px;--margin-left:0px;--margin-right:0px;}.elementor-17616 .elementor-element.elementor-element-418aab03 img{width:26%;}.elementor-17616 .elementor-element.elementor-element-9ac3703{--display:flex;}.elementor-17616 .elementor-element.elementor-element-5321f3da{--display:flex;}.elementor-17616 .elementor-element.elementor-element-4180e7ed{--display:flex;}.elementor-17616 .elementor-element.elementor-element-6ab0f2f{--display:grid;--e-con-grid-template-columns:repeat(3, 1fr);--e-con-grid-template-rows:repeat(2, 1fr);--grid-auto-flow:row;}@media(max-width:1200px){.elementor-17616 .elementor-element.elementor-element-6ab0f2f{--grid-auto-flow:row;}}@media(min-width:768px){.elementor-17616 .elementor-element.elementor-element-11cbba7f{--width:100vw;}}@media(min-width:2400px){.elementor-17616 .elementor-element.elementor-element-11cbba7f{--min-height:100vh;}.elementor-17616 .elementor-element.elementor-element-6ab0f2f{--grid-auto-flow:row;}}@media(max-width:1366px){.elementor-17616 .elementor-element.elementor-element-6ab0f2f{--grid-auto-flow:row;}}@media(max-width:1024px){.elementor-17616 .elementor-element.elementor-element-418aab03 img{width:40%;}.elementor-17616 .elementor-element.elementor-element-6ab0f2f{--grid-auto-flow:row;}}@media(max-width:880px){.elementor-17616 .elementor-element.elementor-element-418aab03 img{width:300px;}.elementor-17616 .elementor-element.elementor-element-6ab0f2f{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-17616 .elementor-element.elementor-element-11cbba7f{--min-height:100vh;}.elementor-17616 .elementor-element.elementor-element-418aab03 > .elementor-widget-container{margin:0px 0px -27px 0px;}.elementor-17616 .elementor-element.elementor-element-418aab03 img{width:60%;}.elementor-17616 .elementor-element.elementor-element-6ab0f2f{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for container, class: .elementor-element-11cbba7f *//* Vollbild ohne Scroll */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Hintergrund mit Farbverlauf und Animation */
body {
  position: relative;
  display: flex;
  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); }
}

/* Layout-Wrapper */
.confirmation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}

/* Glasbox-Stil */
.confirmation-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: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  color: white;
}

/* Überschrift */
.confirmation-box h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #ffffff;
  line-height: 1.3;
}

/* Beschreibungstext */
.confirmation-box p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
  line-height: 1.5;
}

/* Button */
.back-button {
  display: inline-block;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #489934;
  color: white !important;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}

.back-button:hover {
  background-color: #064e9c;
}

/* Kleiner Hinweis-Link */
.confirmation-box small {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.confirmation-box small a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-size: 0.8rem;
}

/* Zeilenumbruch für Mobil */
.mobile-break {
  display: none;
}

/* Mobile Optimierung */
@media (max-width: 767px) {
  html, body {
    overflow: hidden;
  }

  .confirmation-box {
    padding: 22px 16px;
    max-width: 95vw;
  }

  .confirmation-box h2 {
    font-size: 1.4rem;
  }

  .confirmation-box p {
    font-size: 0.95rem;
  }

  .back-button {
    font-size: 0.95rem;
  }

  .mobile-break {
    display: inline;
  }
}/* End custom CSS */