/* Spezifisches Styling für die Impressum-Seite (und Datenschutz) */

.legal-content {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 50px;
    margin-top: 120px; /* Platzhalter für den fixierten Header */
    margin-bottom: 80px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.legal-content h1 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.legal-content section {
    margin-bottom: 25px;
}

.legal-content h2 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.legal-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-content a {
    color: #1e293b;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

* Stellt sicher, dass Buttons immer weißen Text haben und lesbar sind */
.legal-content .cta-btn,
.legal-content a.cta-btn {
    color: #ffffff !important;
    background-color: #0284c7;
}

.legal-content .cta-btn:hover,
.legal-content a.cta-btn:hover {
    color: #ffffff !important;
    background-color: #0369a1;
}

