/* Hintergrund wie bei Contact & Datenschutz */
.page.page-impressum {
    background-image: url("background_dunkel.png");
}

/* Wrapper für den Textinhalt */
.legal-wrapper {
    position: relative;
    width: 80%;
    max-width: 900px; 
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 160px; /* Platz für die Footer-Elemente */
    color: var(--text-main);
    font-family: "Satoshi", sans-serif;
    z-index: 2;
}

.legal-title {
    font-size: 2.2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
    color: #73746e; /* Akzentfarbe aus style.css/contact.css */
}

/* Text-Styling */
.legal-content section {
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #d5d1c8;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 16px;
}

.legal-content a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(245,245,245,0.4);
}

.legal-content a:hover {
    color: #73746e;
    border-bottom-color: #73746e;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .legal-wrapper {
        width: 88%;
        padding-top: 100px;
        padding-bottom: 180px;
    }

    .legal-title {
        font-size: 1.8rem;
    }
}

.legal-content a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(245,245,245,0.4);
    transition: all 0.2s ease;
}

.legal-content a:hover {
    color: #73746e;
    border-bottom-color: #73746e;
}