/* Globale Stile & Typografie */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    line-height: 1.2;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 0.2em;
    text-align: center;
}

h2 {
    font-size: 2.2em;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

h3 {
    font-size: 1.6em;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    color: #34495e;
}

p {
    margin-bottom: 1em;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
}

strong {
    font-weight: 700;
    color: #2c3e50;
}

/* Header */
header {
    background-color: #4CAF50; /* Ein frisches Grün */
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header p {
    font-size: 1.2em;
    margin-top: 5px;
    opacity: 0.9;
}

/* Main Content */
main {
    flex-grow: 1;
    padding: 40px 0;
}

article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.article-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

.article-meta {
    text-align: center;
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 2em;
}

/* Footer */
footer {
    background-color: #2c3e50; /* Dunkles Grau-Blau */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.4em;
    }

    article {
        padding: 25px;
    }

    .article-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    .article-title {
        font-size: 1.8em;
    }
}