<style>
.hero-module {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1; /* Lower z-index to layer below other modules */
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the hero background */
    padding: 100px;
    background: rgba(0, 0, 0, 0.7); /* Optional: to improve text readability */
    border-radius: 10px;
}

.hero-content h3 {
    text-align: left;
    max-width: 1000px;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: white;
}

.hero-content p {
    text-align: left;
    max-width: 1000px;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: white; /* Adjust as needed */
}

.top-module {
    position: relative;
    z-index: 2; /* Ensure it is above the hero module */
    margin-bottom: -60vh; /* Negative margin to overlap the hero module */
}

@media (max-width: 768px) {
    .hero-content h3 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .top-module {
        margin-bottom: -40vh; /* Adjust negative margin for mobile view */
    }
}
</style>
