/* Save this as styles.css */
body {
    margin: 0;
    font-family: sans-serif;
}

.hero-container {
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: relative;
    color: white;
    padding: 20px;
}

.hero-text h4 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 1.5rem;
    margin-top: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .hero-text h4 { font-size: 2.5rem; }
    .hero-text p { font-size: 1.2rem; }
}