/* Grundlegende Styles für die Webseite */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-size: 16px;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

.logo {
    max-width: 150px; /* Begrenzt die Breite des Logos auf 150px */
    max-height: 150px; /* Begrenzt die Höhe des Logos auf 150px */
    width: auto; /* Behält das Seitenverhältnis bei */
    height: auto; /* Behält das Seitenverhältnis bei */
    display: block; /* Stellt sicher, dass das Logo in einer eigenen Zeile steht */
    margin: 0 auto 20px; /* Zentriert das Logo und fügt einen Abstand darunter ein */
}

header {
    background-color: #4CAF50; /* Optimierte Farbe: Grün */
    color: white;
    text-align: center;
    padding: 40px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

nav {
    background-color: #333;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

nav ul li a:hover {
    text-decoration: underline;
}

.section {
    padding: 40px 0;
    background-color: white;
}

section h2 {
    font-size: 2em;
    color: #333;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .section {
        padding: 20px 0;
    }

    section h2 {
        font-size: 1.5em;
    }

    ul li {
        font-size: 1em;
    }

    footer p {
        font-size: 0.9em;
    }
}