  .text-center { text-align: center; }
  .mb-2 { margin-bottom: 0.5rem; }
  .mb-4 { margin-bottom: 1rem; }
  .mb-6 { margin-bottom: 1.5rem; }
  .mx-auto { margin-left: auto; margin-right: auto; }
  .rounded-lg { border-radius: 0.5rem; }
  .shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
  .w-40 { width: 10rem; }
  .h-auto { height: auto; }
  .px-4 { padding-left: 1rem; padding-right: 1rem; }
  .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .bg-blue-600 { background-color: #000; }
  .text-white { color: white; }
  .rounded { border-radius: 0.25rem; }
  .hover\:bg-blue-700:hover { background-color: #1d4ed8; }
  .bg-gray-100 { background-color: #0000; }
  .text-gray-800 { color: #1f2937; }
  .max-w-4xl { max-width: 56rem; }
  .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .flex { display: flex; }
  .justify-center { justify-content: center; }
  .space-x-4 > *:not(:last-child) { margin-right: 1rem; }
  .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .font-bold { font-weight: 700; }
  .hidden { display: none; }
  .space-y-6 > * + * { margin-top: 1.5rem; }
  .text-justify { text-align: justify; }
  .text-base { font-size: 1rem; line-height: 1.5rem; }
  .leading-relaxed { line-height: 1.625; }
.bg-black { background-color: #000; }
  ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-left: 0;
  }

  ul li {
    text-indent: 0;
    margin-bottom: 0.5em;
  }

  ul li::marker {
    color: #000;
    font-weight: bold;
  }

  body {
    font-family: Arial, sans-serif;
    color: #000;
  }




.kontakt-container {
  display: flex;
  align-items: center; /* Vertikal zentrieren */
  gap: 1rem; /* Abstand zwischen Text und Bild */
}

.kontakt-text {
  flex: 1; /* Text nimmt den verfügbaren Platz ein */
}

.kontakt-bild-container {
  flex-shrink: 0; /* Bild nicht schrumpfen lassen */
}

.kontakt-bild {
  max-height: 200px; /* max Höhe, passend zur Texthöhe */
  height: 100%;
  width: auto;
  border-radius: 0.5rem;
  display: block;
}