*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f5f7f5;
color:#333;
line-height:1.6;
}

nav{
background:#0f5c2e;
color:white;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
    height:120px;
    width:auto;
    display:block;
    border:2px solid red;
}

.logo-area span{
font-size:24px;
font-weight:bold;
}

.menu a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}

header{
background:url('images/hero.jpg');
background-size:contain;
background-repeat:no-repeat;
background-position:center;
height:700px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-content{
background:rgba(0,0,0,0.6);
padding:40px;
border-radius:10px;
color:white;
max-width:400px;
}

.hero-content h1{
font-size:28px;
margin-bottom:15px;
}

.btn{
display:inline-block;
background:#22c55e;
color:white;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
margin-top:20px;
}

section{
padding:60px 10%;
background:white;
margin:20px;
border-radius:10px;
}

h2{
text-align:center;
color:#0f5c2e;
margin-bottom:25px;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
border:1px solid #ddd;
border-radius:10px;
overflow:hidden;
text-align:center;
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3{
padding:15px;
color:#0f5c2e;
}

.card p{
padding:0 15px 20px;
}

.contact-box{
background:#f3f4f6;
padding:25px;
border-radius:10px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}

footer{
background:#0f5c2e;
color:white;
text-align:center;
padding:20px;
}