.hero-section {
    background: url('/assets/files/img/hero-bg-3.jpg') no-repeat center center / cover;
    padding: 100px 15px;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.5rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.425);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem; /* Verkleint de tekst voor kleinere schermen */
        word-wrap: break-word; /* Breekt lange woorden indien nodig */
    }
    .hero-section p {
        font-size: 1.2rem; /* Verkleint de tekst voor kleinere schermen */
        word-wrap: break-word; /* Breekt lange woorden indien nodig */
    }
}