.hero-section {
    position: relative;
    height: 700px;
    background: url('../img/hs_bg.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero-container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.43);
    padding: 30px;
    border-radius: 0;
    text-align: center;
    color: #fff;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
}

.hero-title {
    font-family: Montserrat, Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.37;
    letter-spacing: 0px;
    text-align: center;
    margin: 0 0 25px 0;
    color: #fff;
}

.hero-text {
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0px;
    text-align: center;
    color: #fff;
}

.hero-text p {
    margin: 0;
}

.hero-text strong {
    font-weight: 700;
}

@media (max-width: 1200px) {
    .hero-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 600px;
    }
    
    .hero-overlay {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-text {
        font-size: 16px;
    }
}
