<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;
}

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

.hero-content h2 {
  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 */
}

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

    .hero-content p {
        font-size: 1em;
    }
}
</style>
