/* Service Header Styles */
.service-header {
    background-color: #f0f0f0;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.service-header .container {
    position: relative;
    z-index: 2;
}

.service-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
