body{
margin:0;
font-family:Arial,sans-serif;
background:#f5efed;
color:#333;
}

header{
background:white;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.logo{
width:180px;
}

nav a{
text-decoration:none;
margin-left:20px;
color:#333;
font-weight:bold;
}

.hero{
min-height:80vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 8%;
background:linear-gradient(
135deg,
#f5efed 0%,
#ffffff 100%
);
}

.hero-text{
width:50%;
}

.badge{
background:#75b728;
color:white;
padding:8px 15px;
border-radius:30px;
}

.hero h1{
font-size:64px;
line-height:1.1;
color:#1f2a1f;
margin:25px 0;
}

.hero p{
font-size:20px;
color:#666;
max-width:500px;
}

.btn-main{
display:inline-block;
margin-top:25px;
padding:15px 30px;
background:#c41b28;
color:white;
text-decoration:none;
border-radius:50px;
}

.hero-image img{
width:450px;
}

section{
padding:80px 8%;
}

h2{
text-align:center;
font-size:42px;
color:#75b728;
}

.cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:white;
width:280px;
padding:25px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card img{
width:180px;
}

.image-banner img{
width:100%;
border-radius:25px;
}

#engagements{
background:#75b728;
color:white;
text-align:center;
}

#engagements h2{
color:white;
}

#engagements ul{
list-style:none;
padding:0;
}

#engagements li{
margin:15px;
font-size:20px;
}

.deco{
text-align:center;
padding:30px;
}

.deco img{
width:180px;
}

footer{
background:#1f2a1f;
color:white;
text-align:center;
padding:30px;
}

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
select{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
}

button{
background:#75b728;
color:white;
border:none;
padding:15px;
border-radius:10px;
}
