/* Spezifisches Design für die Seite Pflasterarbeiten */

/* Hero-Bereich */
.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--primary-color);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.service-hero h1 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hauptinhalt */
.service-content {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.service-content h2 {
    color: var(--primary-color);
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 30px;
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Button Anpassung */
.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;
}