* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #FDF8F3;
    color: #333;
    line-height: 1.8;
}

/* Navigation */
nav {
    background-color: #C44536;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 30px;
    max-width: 800px;
    margin: 0 auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

nav a.active {
    background-color: rgba(255,255,255,0.3);
    font-weight: bold;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

.content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.greeting {
    font-size: 1.3em;
    font-weight: bold;
    color: #C44536;
    margin-bottom: 20px;
}

h1 {
    color: #C44536;
    margin-bottom: 25px;
    font-size: 1.8em;
}

h2 {
    color: #C44536;
    margin: 25px 0 15px 0;
    font-size: 1.3em;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

.section-title {
    font-weight: bold;
    color: #C44536;
}

.highlight {
    background-color: #FFF3E0;
    padding: 15px;
    border-left: 4px solid #C44536;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

/* Kontaktformular */
.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #666;
    font-size: 0.9em;
}

footer a {
    color: #C44536;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Listen für Impressum/Datenschutz */
ul.legal-list {
    margin: 15px 0 20px 25px;
}

ul.legal-list li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .content {
        padding: 20px;
    }

    .greeting {
        font-size: 1.1em;
    }

    body {
        font-size: 16px;
    }

    nav ul {
        gap: 5px 15px;
    }

    nav a {
        font-size: 0.9em;
        padding: 5px 8px;
    }

    h1 {
        font-size: 1.5em;
    }
}
