/* Styling für Dienstleistungs-Unterseiten */
.service-hero {
    background: var(--primary-color);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.service-hero h1 {
    font-size: 40px;
    margin: 0;
}

.service-content {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 32px;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer Legal Links (muss in global.css oder hier sein) */
.footer-legal-links {
    margin-top: 15px;
    text-align: center;
}

.footer-legal-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    margin: 0 10px;
}

.footer-legal-links a:hover {
    color: white;
}