body{
font-family:Arial;
margin:0;
background:#f4fdf7;
}

header{
background:#1f2937;
color:white;
padding:20px 40px;
display:flex;
justify-content:space-between;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
background:linear-gradient(to right,#0b8f4d,#2ecc71);
color:white;
padding:80px;
text-align:center;
}

.section{
padding:60px 40px;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}
.hero{
background-image:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd');
background-size:cover;
background-position:center;
padding:140px 30px;
color:white;
text-align:center;
}

.hero-overlay{
background:rgba(0,0,0,.45);
padding:60px;
border-radius:15px;
}

.btn{
background:#2ecc71;
padding:14px 28px;
color:white;
text-decoration:none;
border-radius:8px;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.card:hover{
transform:translateY(-8px);
}

.card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.card img{
width:100%;
height:180px;
object-fit:cover;
}

.contact-form{
max-width:700px;
margin:auto;
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 8px 24px rgba(0,0,0,.08);
}

label{
display:block;
margin:18px 0 8px;
font-weight:bold;
}

input, textarea{
width:100%;
padding:14px;
border:1px solid #d1d5db;
border-radius:8px;
box-sizing:border-box;
font-size:15px;
}

textarea{
resize:vertical;
}

.btn{
margin-top:20px;
background:#0b8f4d;
color:white;
padding:14px 28px;
border:none;
border-radius:8px;
font-weight:bold;
cursor:pointer;
}


.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.card img{
width:100%;
height:240px;
object-fit:cover;
display:block;
}

.card h3{
padding:20px 20px 10px;
margin:0;
}

.card p{
padding:0 20px 25px;
line-height:1.6;
}

footer{
background:#1f2937;
color:white;
text-align:center;
padding:20px;
}
@media(max-width:768px){

.hero{
padding:80px 20px;
}

.hero h1{
font-size:34px;
}

.products{
grid-template-columns:1fr;
}

.card img{
height:220px;
}

header{
flex-direction:column;
gap:15px;
text-align:center;
}

nav a{
display:inline-block;
margin:8px;
}

}


