/* Legal Pages Stylesheet - Impressum & Datenschutz */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: #FFFCF8;
    padding: 20px;
    letter-spacing: -0.01em;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.1);
}

h1 {
    color: #2C2C2C;
    margin-bottom: 10px;
    font-size: 2em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    color: #2C2C2C;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    color: #5A5A5A;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #2C2C2C;
    text-decoration: underline;
    text-decoration-color: #D4E157;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

a:hover {
    color: #5A5A5A;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background: #2C2C2C;
    color: #FFFFFF;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.1);
    transition: all 0.2s ease;
}

.back-link:hover {
    background: #5A5A5A;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.12);
    transform: translateY(-1px);
}

.highlight,
.block {
    background: #F8F8F8;
    padding: 15px;
    border-left: 3px solid #D4E157;
    margin: 15px 0;
    border-radius: 8px;
}

.last-updated {
    color: #8C8C8C;
    font-size: 0.9em;
    margin-bottom: 30px;
}

.muted {
    color: #8C8C8C;
    font-size: 0.9em;
    margin-top: 4px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    h2 {
        font-size: 1.2em;
    }
}
