*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Red Hat Display', sans-serif;
background:#FFFFFF;
color:#000000;
line-height:1.6;
}

/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
}

.logo img{
height:40px;
}

/* BUTTON */

.btn{
background:#25758c;
color:#FFFFFF;
padding:12px 26px;
text-decoration:none;
border:none;
border-radius:100px;
cursor:pointer;
font-size:14px;
display:inline-block;
}

.btn:hover{
opacity:0.85;
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 8%;
gap:40px;
}

.hero-image img{
width:100%;
max-width:500px;
border-radius:10px;
}

.hero-text{
max-width:500px;
}

.hero-text h1{
font-size:38px;
margin-bottom:20px;
}

.hero-text p{
margin-bottom:30px;
font-size:18px;
color:#444;
}

/* ABOUT */

.about{
padding:80px 8%;
max-width:800px;
}

.about h2{
margin-bottom:20px;
font-size:28px;
}

/* SERVIZI */

.servizi{
padding:80px 8%;
background:#f7f9fa; /* quarto colore leggerissimo */
}

.servizi h2{
margin-bottom:40px;
font-size:28px;
}

.servizi-grid{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.servizio{
flex:1;
min-width:220px;
}

.servizio h3{
margin-bottom:10px;
}

/* CONTATTI */

.contatti{
padding:80px 8%;
max-width:600px;
}

.contatti h2{
margin-bottom:30px;
}

form{
display:flex;
flex-direction:column;
gap:15px;
}

input, textarea{
padding:12px;
border:1px solid #ddd;
font-family:'Red Hat Display', sans-serif;
}

textarea{
height:120px;
resize:none;
}

/* FOOTER */

footer{
padding:40px 8%;
text-align:center;
font-size:14px;
color:#666;
}

/* MOBILE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-image img{
max-width:100%;
}

.servizi-grid{
flex-direction:column;
}

}