/* Стили для hero-блока */

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}
