/* Legal Pages Styles (Impressum & Datenschutz) */

.legal-page {
    padding-top: 140px;
    padding-bottom: 6rem;
    min-height: 100vh;
}

.legal-header {
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.legal-content {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-block {
    margin-bottom: 2rem;
}

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

.legal-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 300;
}

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

.legal-block a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.legal-block a:hover {
    border-bottom-color: var(--white);
}

.legal-block ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.legal-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: 1.5rem;
}

.footer-link:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 120px;
        padding-bottom: 4rem;
    }

    .legal-header {
        margin-bottom: 3rem;
    }

    .legal-section {
        margin-bottom: 2.5rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .footer-link {
        margin-left: 1rem;
    }
}
