/* ==========================================
   Default Page (Impressum, Datenschutz, etc.)
   ========================================== */

.legal-page-section {
    padding: 120px 0 100px;
    background-color: var(--color-bg, #fdfaf6);
    min-height: 70vh;
}

.legal-page-container {
    max-width: 860px;
}

.legal-page-header {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-accent, #C6D8A8);
}

.legal-page-title {
    font-family: var(--font-heading, 'Poppins'), sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary, #000);
    margin: 0;
    line-height: 1.2;
}

/* Content Typography */
.legal-page-content {
    font-family: var(--font-main, 'DM Sans'), sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.legal-page-content h2 {
    font-family: var(--font-heading, 'Poppins'), sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary, #000);
    margin: 2.5rem 0 0.75rem;
}

.legal-page-content h3 {
    font-family: var(--font-heading, 'Poppins'), sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary, #000);
    margin: 2rem 0 0.5rem;
}

.legal-page-content p {
    margin: 0 0 1.2rem;
}

.legal-page-content ul,
.legal-page-content ol {
    margin: 0 0 1.2rem 1.5rem;
    padding: 0;
}

.legal-page-content li {
    margin-bottom: 0.4rem;
}

.legal-page-content a {
    color: var(--color-secondary, #C8866B);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page-content a:hover {
    color: #a86b51;
}

.legal-page-content strong {
    font-weight: 600;
    color: #111;
}

.legal-page-content address {
    font-style: normal;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page-section {
        padding: 80px 0 60px;
    }

    .legal-page-title {
        font-size: 2rem;
    }

    .legal-page-content h2 {
        font-size: 1.25rem;
    }
}
