.hero {
    position: relative;
    color: #fff;
    min-height: 460px;
    padding: 120px 0 70px;
    background-image:
        linear-gradient(90deg, rgba(18, 54, 122, 0.78) 0%, rgba(18, 54, 122, 0.45) 45%, rgba(18, 54, 122, 0.2) 100%),
        url("../../img/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .container {
    display: block;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.6;
    color: #e6efff;
}

@media (max-width: 991px) {
    .hero {
        min-height: 420px;
        padding: 110px 0 55px;
        background-position: 66% center;
    }

    .hero-content {
        max-width: 100%;
    }
}
