.hero-block {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-block__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-block__content {
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-block__content h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
}

.hero-block__content p {
    font-size: 1.25rem;
    margin-bottom: 1.5em;
}

.hero-block__btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
}

.hero-block__btn:hover {
    background: #ddd;
}