/* =========================================
   LEGAL PAGES STYLES (Impressum, DSGVO, AGB, Übersicht)
   ========================================= */

/* Hero Section (Ist hier bewusst etwas kleiner und cleaner als auf den anderen Seiten) */
.legal-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background: radial-gradient(circle at top, rgba(30, 41, 59, 0.8), var(--color-bg-dark));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 10px;
}

.legal-hero .hero-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Container für den Text (Schmaler für perfekte Lesbarkeit!) */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Die Glas-Karte für den Text */
.legal-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--color-tech-blue); /* Schöner blauer Akzentbalken oben */
    border-radius: 20px;
    padding: 60px;
    color: #cbd5e1;
}

/* Text & Typografie-Styling */
.legal-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-card h2:first-of-type {
    margin-top: 0; /* Die allererste Überschrift braucht keinen Abstand nach oben */
}

.legal-card h3 {
    color: var(--color-energy-orange);
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-card p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-card strong {
    color: #fff;
    font-weight: 600;
}

.legal-card a {
    color: var(--color-tech-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-card a:hover {
    color: var(--color-energy-orange);
    text-decoration: underline;
}

/* Trennlinie zwischen den rechtlichen Abschnitten */
.legal-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* RESPONSIVITÄT */
@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }
    
    .legal-card h2 {
        font-size: 1.5rem;
    }
}