/* Allgemeine Seiteneinstellungen */
body {
    font-family: 'Open Sans', Arial, sans-serif; /* Moderne und freundliche Schriftart */
    background-color: #e7f5e5; /* Sanftes Grün als Hintergrund */
    margin: 0;
    padding: 0;
    color: #1b5e20; /* Dunkles Grün für den Text */
    line-height: 1.6;
}

/* Container für den Inhalt */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff; /* Weißer Hintergrund für Inhalte */
    border-left: 8px solid #66bb6a; /* Grüner Rand für Akzent */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Überschrift */
h1 {
    text-align: center;
    font-size: 2.5em;
    color: #2e7d32; /* Grüne Farbe für Überschriften */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Bildbereich */
.header-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Einleitungstext */
.intro-text {
    font-size: 1.2em;
    text-align: justify;
    color: #4a4a4a; /* Neutraler Textton für Lesbarkeit */
    margin-bottom: 20px;
}

/* Aufzählung */
ul {
    padding-left: 20px;
    list-style: none; /* Entfernt Standard-Punkte */
}

ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    position: relative;
    padding-left: 30px;
    color: #2e7d32; /* Grüner Text für Aufzählungen */
}

ul li:before {
    content: "🌻"; /* Sunflower-Symbol */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #fdd835; /* Sonnenblumengelb */
}

/* Links */
a {
    color: #388e3c; /* Grün für Links */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #4a4a4a;
}