/* Spezifische Styles für rechtliche Seiten */

body {
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.8;
}

.content {
    background: #222;
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2196F3;
}

.content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2196F3;
}

.content p {
    margin-bottom: 1.2rem;
    color: #ccc;
    line-height: 1.8;
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
    color: #ccc;
}

.content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.content strong {
    color: #2196F3;
}

.content a {
    color: #2196F3;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.meta.meta-top {
    margin-top: 2rem;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 0;
    border-top: 1px solid #333;
    border-bottom: none;
}

footer {
    padding: 2rem 0;
    border-top: 1px solid #333;
}

.footer-links {
    margin-bottom: 1rem;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}
