.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--container-padding);
}

.hero-content h1 {
    font-size: var(--text-hero);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    color: var(--color-text-light);
}

.hero-content p {
    font-size: var(--text-2xl);
    max-width: 600px;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}