*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#f8f8f8;
    color:#222;
    line-height:1.8;
}

.container{
    max-width:1400px;
    margin:auto;
    background:#fff;
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:40px;
    gap:30px;
}

.badge{
    width:160px;
}

.badge-inner{
    background:#0d4f2c;
    color:#fff;
    border-radius:20px;
    text-align:center;
    padding:20px;
}

.badge-inner h2{
    font-size:50px;
}

.brand{
    flex:1;
    text-align:center;
}

.brand h1{
    font-size:80px;
    color:#114d25;
    font-weight:800;
}

.brand h2{
    color:#114d25;
    font-size:48px;
}

.brand p{
    margin-top:15px;
}

.hero-features{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:40px;
}

.hero-image img{
    max-width:250px;
}

.question-section{
    padding:30px;
    text-align:center;
}

.question-section h2{
    font-size:52px;
    margin-bottom:15px;
}

.sub-title{
    display:inline-block;
    background:#0d6b2d;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
}

.comparison{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    padding:40px;
}

.compare-image img{
    width:100%;
}

.compare-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    border:1px solid #ddd;
    border-radius:16px;
    padding:25px;
}

.info-card h3{
    color:#0d6b2d;
    margin-bottom:10px;
}

.warranty-bar{
    background:#0b4e2b;
    color:#fff;
    padding:25px;
    margin:30px;
    border-radius:18px;

    display:flex;
    align-items:center;
    gap:20px;
}

.icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    color:#0b4e2b;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;
    font-weight:bold;
}

.advantages{
    padding:40px;
}

.advantages h2{
    text-align:center;
    margin-bottom:30px;
}

.adv-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.adv-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:20px;
    text-align:center;
}

.bottom-section{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
    padding:40px;
}

.quality-box,
.offer-box{
    border-radius:20px;
    border:1px solid #ddd;
    padding:30px;
}

.quality-box ul{
    margin-top:20px;
}

.quality-box li{
    margin-bottom:10px;
}

.offer-box{
    background:#fff7e8;
}

.offer-box h3{
    color:#0d6b2d;
    margin-bottom:15px;
}

footer{
    background:#0b4e2b;
    color:#fff;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    padding:30px;
    gap:20px;
}

footer div{
    text-align:center;
}

@media(max-width:992px){

    .hero{
        flex-direction:column;
    }

    .comparison{
        grid-template-columns:1fr;
    }

    .bottom-section{
        grid-template-columns:1fr;
    }

    .adv-grid{
        grid-template-columns:repeat(2,1fr);
    }

    footer{
        grid-template-columns:1fr;
    }

    .brand h1{
        font-size:50px;
    }

    .question-section h2{
        font-size:32px;
    }
}

@media(max-width:576px){

    .adv-grid{
        grid-template-columns:1fr;
    }

    .hero-features{
        flex-direction:column;
        gap:10px;
    }

}