.hero {
    background: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1472&q=80') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}


@media (max-width: 992px) {
    .hero h2 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}

@media (max-width: 768px) {
    .hero { height: 400px; }
    .hero h2 { font-size: 1.8rem; }
    
}

@media (max-width: 576px) {
    .hero { height: 350px; }
    .hero h2 { font-size: 1.5rem; }
}