html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.hero-static{
    min-height: 82vh;
    background: linear-gradient(
        90deg,
        #f6f1ea 0%,
        #ffffff 60%
    );
    padding: 80px 5%;
}
.hero-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.hero-text{
    max-width: 520px;
    margin-top: 10px
}

.hero-text h1{
    font-size: 3rem;
    color: #f59300;
    line-height: 1.1;
}

.hero-text h1 span{
    color: #0f5f3d;
}

.hero-text p{
    margin: 20px 0;
    font-size: 1.05rem;
    color: #444;
}

.hero-btn{
    display: inline-block;
    background: #cc1e2c;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover{
    background: #a51722;
}

.hero-image img{
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}
@media (max-width: 768px){
    .hero-content{
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1{
        font-size: 2.2rem;
    }

    .hero-image img{
        max-width: 280px;
    }
}
