.services-hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    height: 100vh;
    min-height: 350px;    
    background-size: cover;
    background-position: center 25%;
    text-align: center; /* Aangepast naar center zoals React */
    overflow: hidden;
}

/* Overlay toegevoegd voor leesbaarheid */
.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(236, 229, 219, 0.7); /* Koeleman gold light met transparantie */
    z-index: 1;
}
/* --- EINDE NIEUW --- */

.services-hero-section .hero-content-container {
    position: relative;
    z-index: 2; /* Zorgt dat de tekst boven de overlay komt */
}

.services-hero-section .hero-title {
    /* Kleinere lettergrootte op mobiel */
    font-size: 2.25rem;
    color: var(--koeleman-blue);
    margin-bottom: 1rem; /* Toegevoegd zoals React */
}

.services-hero-section .hero-subtitle {
    margin-top: 1rem;
    /* Kleinere lettergrootte op mobiel */
    font-size: 1rem;
    max-width: 40rem; /* Aangepast zoals React */
    margin-left: auto; /* Toegevoegd zoals React */
    margin-right: auto; /* Toegevoegd zoals React */
    color: var(--text-primary); /* Gebruik primaire tekstkleur voor contrast */
}

/* Grotere schermen krijgen de oude waarden terug */
@media (min-width: 768px) {
    .services-hero-section {
        padding: 10rem 0; /* Padding aangepast */
    }
    .services-hero-section .hero-title {
        font-size: 3.5rem;
    }
    .services-hero-section .hero-subtitle {
        font-size: 1.125rem;
    }
}

