/* Spezifisches Design für die Seite Reinigung */

/* Hero-Bereich */
.service-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), var(--primary-color);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.service-hero h1 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hauptinhalt */
.service-content {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 32px;
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Button */
.cta-btn-service {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn-service:hover {
    background: #27ae60;
}