.hero {
    max-width: 1170px;
    width: 100%;
    margin: -2px auto 0;
    position: relative;
    background-image: url('http://gymn5.baranovichi.edu.by/sm_full.aspx?guid=84113'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero__logo {
    position: absolute;
    left: 20px;
    top: 40px;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2; 
    padding: 36px 160px 20px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__title {
    font-size: 24px;
    margin-top: 56px;
    margin-bottom: 0;
    line-height: 1.3;
}

.hero__subtitle {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero__content {
        padding: 20px 20px 20px 140px;
    }
    
    .hero__title {
        font-size: 20px;
    }
    
    .hero__subtitle {
        font-size: 14px;
    }
}

@media (max-width: 440px) {
    .hero__content {
        padding: 20px;
    }

    .hero__logo {
        position: static;
        margin-bottom: 24px;
    }
}