/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Hauptcontainer für Datenschutz */
.datenschutz-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    
    border-radius: 5px;
}

/* Überschriften */
h1 {
    font-size: 28px;
    text-align: center;
}

h2 {
    font-size: 18px;
    margin-top: 20px;
    padding-left: 10px;
}

/* Datenschutz-Abschnitte */
.datenschutz-section {
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
}

/* Links */
a {
    color: #042641;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.content-footer {
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

.footer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

