.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background-image: url("../images/banner/banner-home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 24, 49, 0.92) 0%,
            rgba(4, 24, 49, 0.72) 55%,
            rgba(4, 24, 49, 0.35) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: block;
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-label {
    margin-bottom: 18px;
    color: #f5b82e;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.1;
}

.hero h1 span {
    color: #f5b82e;
}

.hero-description {
    max-width: 700px;
    margin-bottom: 34px;
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.button-primary {
    color: #082544;
    background: #f5b82e;
}

.button-primary:hover {
    background: #ffffff;
}

.button-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

.button-outline:hover {
    color: #082544;
    background: #ffffff;
}
.hero-content {

    position: relative;

    z-index: 10;

    width: 1200px;

    margin: auto;

    color: white;

}

.hero h4{

    color:#f7b733;

    font-size:20px;

    margin-bottom:20px;

}

.hero h1{

    font-size:70px;

    line-height:1.2;

    margin-bottom:30px;

}

.hero p{

    width:650px;

    font-size:22px;

    line-height:1.8;

}

.hero-button{

    margin-top:50px;

    display:flex;

    gap:20px;

}

.hero-button a{

    padding:18px 40px;

    background:#f7b733;

    color:black;

    text-decoration:none;

    font-weight:bold;

    border-radius:8px;

    transition:.3s;

}

.hero-button a:hover{

    background:white;

}