/* 1. Grundlegende Formatierung & Reset */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    background-color: #f4f6f9; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    padding: 60px 20px; /* Mehr Abstand nach oben und unten für lange Texte */
}

/* 2. Hauptcontainer */
.container { 
    background-color: #ffffff; 
    padding: 50px 40px; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); 
    max-width: 700px; /* Leicht verbreitert für bessere Textlesbarkeit */
    text-align: center; 
}

/* Status-Badge ("Projekt Beendet") */
.status-badge { 
    background-color: #fee2e2; 
    color: #ef4444; 
    padding: 12px 32px; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 1rem;
    text-transform: uppercase; 
    margin-bottom: 30px; 
    display: inline-block; 
    letter-spacing: 0.5px;
}

/* 3. Inhaltsbereich & Fließtext (Linksbündig für optimale Lesbarkeit) */
.content { 
    text-align: left; 
    color: #374151; /* Angenehmes, dunkles Anthrazit statt reinem Schwarz */
    line-height: 1.65; 
    margin-bottom: 40px; 
}

.content h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.content h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content p { 
    margin-bottom: 18px; 
    font-size: 1rem;
}

/* Trennlinien */
.separator {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 30px 0;
}

/* 4. Rechtlicher Hinweiskasten (Beweislast, Lizenzen etc.) */
.legal-notice {
    background-color: #f8fafc; /* Dezenter Graublau-Ton */
    border-left: 4px solid #64748b; /* Graue Signalleiste links */
    padding: 25px;
    border-radius: 6px;
    margin-top: 35px;
}

.legal-notice h4 {
    color: #0f172a;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 600;
}

.legal-notice ul {
    list-style-type: none; /* Entfernt Standard-Punkte */
}

.legal-notice li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #334155;
    position: relative;
    padding-left: 20px;
}

/* Eigener, sauberer Bulletpoint für die Liste */
.legal-notice li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #64748b;
    font-weight: bold;
}

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

/* 5. Impressum-Bereich */
.impressum {
    text-align: left;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

.impressum h2 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
}

.impressum p {
    margin-bottom: 15px;
}

.impressum strong {
    color: #1f2937;
}
