.elementor .text_blau{max-width:150px;font-family:Helvetica;font-weight:400;font-size:20px;color:#33578d;letter-spacing:1.2px;column-gap:3px;text-align:start;padding:6px;margin:0px;border-radius:36px;display:block;flex-direction:row;row-gap:1px;justify-content:flex-start;:root {
  --brand-primary: #33578d;
  --brand-secondary: #89a1ca;
  --brand-surface: #d8e8f2;
  --brand-accent: #e52e13;
  --text-primary: #32363b;
  /* dunkelgrau */
  --text-muted: #4b5563;
  /* mittelgrau */
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.brand-logo {
  height: 75px;
  width: auto;
}

body {
  font-family: Helvetica, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--brand-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: var(--text-primary);
}

.container {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--brand-surface);
  box-shadow: 0 24px 60px rgba(51, 87, 141, 0.25);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo h1 {
  color: var(--brand-primary);
  font-size: 28px;
  font-weight: 600;
}

.logo p {
  color: var(--brand-secondary);
  font-size: 14px;
  margin-top: 5px;
}

.content {
  text-align: center;
}

.icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
  color: var(--brand-accent);
}

h2 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 24px;
}

h3 {
  color: var(--brand-primary);
  margin-bottom: 20px;
  font-size: 20px;
}

.email-display {
  background: var(--brand-surface);
  border-left: 4px solid var(--brand-primary);
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  text-align: left;
}

.email-display strong {
  color: var(--brand-primary);
}

.info-box {
  background: var(--brand-surface);
  border-left: 4px solid var(--brand-secondary);
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  text-align: left;
}

.info-box strong {
  color: var(--brand-primary);
}

p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.reasons {
  margin: 20px 0;
  text-align: left;
}

.reasons label {
  display: block;
  margin: 10px 0;
  color: #555;
  cursor: pointer;
}

.reasons input[type="radio"] {
  margin-right: 10px;
}

textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}

textarea:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(137, 161, 202, 0.35);
}

.button {
  background: var(--brand-accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
  width: 100%;
  max-width: 300px;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #c2210f;
  /* dunklere Akzentfarbe */
  box-shadow: 0 10px 20px rgba(229, 46, 19, 0.3);
}

.button:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 2px;
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  display: none;
  margin: 20px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--brand-accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.success {
  color: #27ae60;
}

.error {
  color: #e74c3c;
}

.message {
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  display: none;
}

.message.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.message.error {
  background: #fde8e5;
  /* helles Rot gemäß Marke */
  border: 1px solid #f5b5ac;
  color: #7a1a10;
}

.message.info {
  background: var(--brand-surface);
  border: 1px solid var(--brand-secondary);
  color: var(--brand-primary);
}

.message.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .container {
      padding: 30px 20px;
  }

  h2 {
      font-size: 20px;
  }

  .button {
      padding: 12px 24px;
  }
}\n}