.elementor-5371 .elementor-element.elementor-element-6d4fabde{--display:flex;--padding-top:10%;--padding-bottom:10%;--padding-left:10%;--padding-right:10%;}.elementor-5371 .elementor-element.elementor-element-6d4fabde:not(.elementor-motion-effects-element-type-background), .elementor-5371 .elementor-element.elementor-element-6d4fabde > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1B1B1B;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-5371 .elementor-element.elementor-element-286f7165{font-family:"Barlow", Sans-serif;font-weight:400;text-shadow:0px 0px 10px rgba(0,0,0,0.3);color:#E0E0E0;}.elementor-5371 .elementor-element.elementor-element-7092f71{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-286f7165 *//* Ein ruhigeres, helles Grau für alle nicht-klickbaren Textelemente */
h1, h2, h3, h4, h5, h6, p, li, b {
    color: #CCCCCC !important;
}

/* Das hellste Weiß NUR für klickbare Links, um sie hervorzuheben */
a {
    color: #E5E5E5 !important;
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-18222 */.popup-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95); /* Startzustand mit leichtem Zoom */
  width: 550px;
  background: white;
  color: #333;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  flex-direction: column;
  padding: 20px;
}

  .popup-banner img {
    width: 85%;
    height: auto;
    border-radius: 8px;
    margin: 10px auto;
    display: block;
  }

  .popup-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  h2 {
    margin: 10px 0;
    font-size: 1.6rem;
    color: #222;
    font-weight: bold;
  }

  p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
    margin: 10px 0;
  }

  .highlight {
    color: #FB2590;
    font-weight: bold;
  }

  .cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #FB2590;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
  }

  .cta-button:hover {
    background: #d91e7d;
    transform: scale(1.05);
  }

  .close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
  }

  .close-popup:hover {
    color: #000;
}

.popup-banner.show-popup {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .popup-banner {
    display: none !important;
  }
}/* End custom CSS */