/* Grundlegende Reset-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #2e3d49;
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    font-weight: 300;
}

/* Hauptbereich */
main {
    padding: 40px 0;
}

.intro, .principles, .about {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.intro h2, .principles h2, .about h2 {
    font-size: 2em;
    color: #2e3d49;
    margin-bottom: 20px;
}

.intro p, .principles ul, .about p {
    font-size: 1.1em;
    color: #555;
}

.principles ul {
    list-style-type: none;
}

.principles li {
    padding: 10px;
    background-color: #f4f4f4;
    margin: 5px 0;
    border-left: 5px solid #2e3d49;
}

/* Bildbereich */
.image-section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.beethoven-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 2px solid #2e3d49;
}

/* Footer */
footer {
    background-color: #2e3d49;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1em;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1em;
    }

    .intro h2, .principles h2, .about h2 {
        font-size: 1.8em;
    }

    .intro p, .principles ul, .about p {
        font-size: 1em;
    }
}
