body{
    font-family: 'Segoe UI',sans-serif;
    color:#333;
}

.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.hero{
    background:
    linear-gradient(rgba(0,70,40,.55),rgba(0,70,40,.55)),
    url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1800&q=80');
    background-size:cover;
    background-position:center;
    min-height:90vh;
    display:flex;
    align-items:center;
    color:white;
}

.hero h1{
    font-size:58px;
    font-weight:700;
}

.hero p{
    font-size:20px;
}

.btn-green{
    background:#2E7D32;
    color:white;
    padding:12px 35px;
    border:none;
}

.btn-green:hover{
    background:#1b5e20;
    color:white;
}

.section-title{
    font-size:40px;
    font-weight:700;
    color:#2E7D32;
}

.feature-box{
    text-align:center;
    padding:35px;
    border-radius:15px;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.feature-box i{
    font-size:50px;
    color:#2E7D32;
}

.product-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.process{
    background:#f6faf6;
}

.process .step{
    text-align:center;
}

.step i{
    font-size:45px;
    color:#2E7D32;
}

.counter{
    background:#2E7D32;
    color:white;
}

.counter h2{
    font-size:50px;
}

.cta{
    background:#1B5E20;
    color:white;
}

footer{
    background:#111;
    color:#ccc;
}
