/* --- Hero-Bereich --- */
.service-hero { 
    background: linear-gradient(135deg, var(--primary-color), #1592b1); 
    color: white; 
    padding: 100px 5%; 
    text-align: center; 
}
.service-hero h1 { font-size: 48px; margin: 0; letter-spacing: -1px; }

/* --- Inhalts-Bereiche --- */
.service-content { padding: 60px 5%; max-width: 800px; margin: 0 auto; }
.service-content h2 { 
    color: var(--primary-color); 
    margin-bottom: 25px; 
    font-size: 32px; 
    position: relative;
    padding-bottom: 15px;
}
.service-content h2::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 60px; height: 3px;
    background: var(--accent-green);
}
.service-content p { color: #555; line-height: 1.8; margin-bottom: 20px; }

/* --- Feature Cards --- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px 5% 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border-bottom: 5px solid var(--accent-green); 
}

.feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.feature-card h3 {
    margin: 20px 20px 10px;
    font-size: 19px;
    color: var(--primary-color);
}

.feature-card p {
    margin: 0 20px 25px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* --- Prozess-Bereich --- */
.process-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}
.process-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: #fcfcfc;
    border-left: 5px solid var(--accent-green);
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* --- Responsive --- */
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }