/* ===== LEGAL PAGES STYLES ===== */
/* Shared styles for Imprint, Privacy Policy, and other legal pages */
.page-content {
    padding: 80px 0;
    background: var(--surface);
}

.page-content .section-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.page-content .section-title {
    text-align: left;
    margin-left: 0;
}

.page-content .section-subtitle {
    margin-top: 16px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: auto;
    max-width: none;
    text-align: left;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 16px 0;
    letter-spacing: -0.2px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-section li:last-child {
    margin-bottom: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-content {
        padding: 60px 0;
    }
    
    .page-content .section-header {
        margin-bottom: 40px;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .legal-section {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
}
