<style type="text/css">
        @font-face {
            font-family: 'Kumbh Sans';
            src: url('../font/KumbhSans-Regular.woff2') format('woff2'),
                 url('../font/KumbhSans-Regular.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Kumbh Sans';
            src: url('../font/KumbhSans-Regular.woff2') format('woff2'),
                 url('../font/KumbhSans-Regular.woff') format('woff');
            
            font-style: normal;
            font-display: swap;
        }

        body, html {
            height: 100%;
            font-family: 'Kumbh Sans', sans-serif; /* Fallback-Schriftart hinzugefügt */
            margin: 0;
            padding: 0;
            background-color: #f0f0f0; /* Leichter Hintergrund für die Seite */
            color: #333; /* Standard-Textfarbe */
        }

        .hero-image {
            background-image: url("../Logo.svg"); /* Stellen Sie sicher, dass der Pfad korrekt ist */
            height: 50vh; /* Höhe des Containers als 50% der Viewport-Höhe */
            max-width: 100%;
            padding: 15px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            position: relative;
            border-bottom: 5px solid #4e4c40; /* Beispielhafter unterer Rand */
        }

        

        .stellarnav {
            margin-bottom: 5vh; /* Korrigierte Einheit */
            background-color: #4e4c40; /* '#' hinzugefügt */
            padding: 10px 0; /* Etwas vertikales Padding für die Navigationsleiste */
            text-align: center; /* Zentriert die Navigationselemente, falls sie inline-block sind */
        }

        .stellarnav ul {
            list-style: none; /* Entfernt Aufzählungszeichen */
            padding: 0;
            margin: 0;
        }

        .stellarnav li {
            display: inline-block; /* Ordnet Listenelemente nebeneinander an */
            margin: 0 5px; /* Kleiner Abstand zwischen den Listenelementen */
        }

        /* Standard-Styling für die Navigationslinks */
        .stellarnav a {
            color: #ffffff; /* Weiße Schriftfarbe für die Links */
            text-decoration: none; /* Entfernt die Standard-Unterstreichung */
            padding: 12px 20px; /* Innenabstand für jeden Link */
            display: block; /* Macht den gesamten Bereich des Links klickbar und ermöglicht Padding */
            border-radius: 4px; /* Abgerundete Ecken für einen Button-Look */
            transition: background-color 0.3s ease, color 0.3s ease; /* Sanfter Übergang */
        }

        /* Hover-Effekt für die Navigationslinks */
        .stellarnav a:hover {
            background-color: #f02e2a; 
            color: #4e4c40;          
        }
        
        .main-content {
            padding: 20px;
            text-align: center;
        }

        aside {
            font-size: 85%;
            padding: 15px;
            background-color: #e9e9e9;
            margin: 20px;
            border-radius: 5px;
        }

        footer {
            margin-top: 5vh;
            font-size: 85%;
            border-top: 1px solid #ccc;
            padding: 1rem 0;
            text-align: center;
            background-color: #333;
            color: #ccc;
        }
.cards {
    display: flex;
    align-items: flex-start; /* Beibehalten für die Grundausrichtung */
    padding: 15px;
    margin-bottom: 20px;
    color: black;
    border-width: 3px;
    border-style: solid;
    border-color: #4e4c40;
  }

  .image-container {
    margin-right: 15px;
    flex-shrink: 0;
  }

  .image-container img {
    display: block;
    width: 200px; /* Feste Breite beibehalten oder anpassen */
    height: 182px; /* Feste Höhe beibehalten oder anpassen */
  }

  .text-container {
    flex-grow: 1;
  }

  .text-container p {
    margin-top: 0;
  }

  .text-container p:last-child {
    margin-bottom: 0;
  }

  .content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
  }

  /* Media Query für kleinere Bildschirme */
  @media (max-width: 768px) { /* Sie können diesen Wert anpassen */
    .cards {
      flex-direction: column; /* Ändert die Flex-Richtung auf vertikal */
      align-items: center; /* Zentriert die Elemente horizontal in der Spalte */
    }

    .image-container {
      margin-right: 0; /* Entfernt den rechten Rand,
 da die Elemente untereinander stehen */
      margin-bottom: 15px; /* Fügt einen unteren Rand zum Bildcontainer hinzu für Abstand zum Text */
      width: 100%; /* Lässt den Bildcontainer die volle Breite einnehmen */
      display: flex; /* Ermöglicht die Zentrierung des Bildes innerhalb des Containers */
      justify-content: center; /* Zentriert das Bild horizontal */
    }

    .image-container img {
        /* Optional: Wenn das Bild auf kleinen Bildschirmen die volle Breite des Containers einnehmen soll,
 aber seine Proportionen beibehalten:
        width: 100%;
        height: auto;
        max-width: 250px; /* Beispielhafte maximale Breite,
 um zu große Bilder zu vermeiden */
        /* Wenn Sie die feste Größe beibehalten wollen,
 lassen Sie die img-Styles wie oben */
    }

    .text-container {
      width: 100%; /* Lässt den Textcontainer die volle Breite einnehmen */
      text-align: center; /* Optional: Zentriert den Text im Textcontainer */
    }
  }
    </style>