/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Allgemeine Stile für Impressum und Datenschutz */
main {
    padding: 50px 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: #7bc7ce; /* Farbe für Überschriften */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
    margin-top: 40px;
}

h3 {
    font-size: 1.5em;
    margin-top: 30px;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

a {
    color: #7bc7ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f7b35e;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.4em;
    }

    p, li {
        font-size: 1em;
    }
}