.sticky-cta-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  background: #f7faff; /* oder transparent, je nach Design */
  padding: 0.5rem;
}

.sticky-cta {
  background-color: #1d92df;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.8em 1.6em;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  max-width: 100%;
}

.sticky-cta:hover {
  background-color: #006bb3;
}

/*
@media (min-width: 768px) {
  .sticky-cta-wrapper {
    display: none;
  }
} */
