*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f6f8f5;
overflow-x:hidden;
}

.navbar{
background:white;
padding:16px 0;
box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.navbar-brand{
display:flex;
align-items:center;
gap:12px;
}

.navbar-brand img{
height:48px;
}

.brand-text{
font-size:28px;
font-weight:700;
color:#14532d;
}

.navbar-nav .nav-link{
font-weight:600;
margin-left:25px;
}

.navbar-nav .active{
color:#198754!important;
}

.page-hero{

padding:180px 0 110px;

background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('images/hero.png');

background-size:cover;
background-position:center;

text-align:center;
color:white;
}

.page-hero small{

color:#9be15d;
font-weight:700;
letter-spacing:2px;

}

.page-hero h1{

font-size:62px;
font-weight:700;
margin-top:15px;

}

.page-hero p{

font-size:20px;
max-width:760px;
margin:auto;
margin-top:20px;
line-height:1.8;

}

.product-section{

padding:100px 0;

}

.product-card{

background:white;
border-radius:24px;
overflow:hidden;
height:100%;

border:1px solid #eee;

box-shadow:0 10px 25px rgba(0,0,0,.05);

transition:.4s;

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.product-card img{

width:100%;
height:350px;
object-fit:contain;
padding:20px;

}

.product-content{

padding:30px;

}

.product-content h4{

font-size:28px;
font-weight:700;
color:#14532d;
margin-bottom:15px;

}

.product-content p{

line-height:1.9;
color:#666;

}

.feature-box{

margin-top:20px;
background:#f8faf8;
padding:15px;
border-radius:15px;

}

.feature-box li{

margin-bottom:10px;
color:#444;

}

.footer{

background:#0f172a;
color:white;
padding:70px 0 20px;
margin-top:80px;

}

.whatsapp-float{

position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
background:#25d366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
text-decoration:none;

}

@media(max-width:768px){

.page-hero h1{
font-size:42px;
}

.product-card img{
height:260px;
}

}