/* --- BASIS SETUP --- */
:root {
    --bg-black: #050505;
    --card-dark: #111111;
    --mam-red: #e63946;
    --text-gray: #a0a0a0;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

body.legal-page { 
    background-color: var(--bg-black) !important; 
    color: white; 
    line-height: 1.6;
}

/* --- HEADER --- */
.main-header { 
    height: 80px; 
    background: rgba(5, 5, 5, 0.98); 
    border-bottom: 1px solid #222; 
    display: flex; 
    align-items: center; 
}
.navbar { 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    padding: 0 5%; 
    align-items: center; 
}
.mini-logo { height: 45px; }
.nav-links a { 
    color: var(--text-gray); 
    text-decoration: none !important; 
    font-size: 13px; 
    text-transform: uppercase; 
    font-weight: 600; 
}

/* --- CONTENT SECTION --- */
.legal-content { padding: 80px 5%; }
.legal-container { max-width: 900px; margin: 0 auto; }
.main-title { font-size: 32px; color: var(--mam-red); margin-bottom: 40px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { 
    font-size: 19px; 
    margin-bottom: 15px; 
    border-bottom: 1px solid #222; 
    padding-bottom: 8px; 
}
.legal-section p { color: var(--text-gray); font-size: 15px; margin-bottom: 15px; }

/* --- INTERAKTIVE KONTAKT LINKS --- */
.legal-contact-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}
.contact-action-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0f0f0f;
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid #222;
    color: white !important;
    text-decoration: none !important;
    width: fit-content;
    transition: 0.3s ease;
}
.contact-action-link i { color: var(--mam-red); font-size: 18px; }
.contact-action-link:hover {
    border-color: var(--mam-red);
    background: #151515;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
}

/* --- FOOTER (LEGAL VERSION) --- */
.legal-footer { 
    background-color: #0a0a0a !important; 
    padding: 70px 5% !important; 
    border-top: 1px solid #1a1a1a !important; 
}
.legal-footer-grid { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: grid !important; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 50px; 
}
.legal-footer-box h4 { 
    font-size: 14px; 
    color: white !important; 
    text-transform: uppercase; 
    margin-bottom: 25px; 
    letter-spacing: 1.5px;
}
.legal-footer-box p, 
.legal-footer-box a { 
    color: var(--text-gray) !important; 
    font-size: 14px !important; 
    text-decoration: none !important; 
    margin-bottom: 12px;
    display: block;
    transition: 0.3s;
}
.legal-footer-box a:hover { color: var(--mam-red) !important; }
.legal-footer-logo { height: 50px; margin-bottom: 20px; }


/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    .legal-footer-grid { 
        grid-template-columns: 1fr !important; 
        text-align: center !important; 
    }
    .legal-footer-box { 
        display: flex !important; 
        flex-direction: column !important; 
        align-items: center !important; 
    }
    .legal-contact-grid { align-items: center; }
    .contact-action-link { width: 100%; max-width: 320px; justify-content: center; }
    .contact-action-link:hover { transform: none; }
    .nav-links { display: none; }
}