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

header{
background:#111;
color:white;
padding:15px;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
}

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

.hero{
background:url('https://images.unsplash.com/photo-1509395176047-4a66953fd231');
background-size:cover;
background-position:center;
height:500px;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero-content{
background:rgba(0,0,0,0.6);
padding:40px;
}

.btn{
background:#ff6600;
color:white;
padding:15px 30px;
text-decoration:none;
display:inline-block;
margin-top:20px;
}

section{
padding:60px 20px;
text-align:center;
}

.servicios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1200px;
margin:auto;
}

.servicio{
background:white;
padding:20px;
border-radius:8px;
}

.servicio img{
width:100%;
border-radius:8px;
}

.galeria{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
max-width:1200px;
margin:auto;
}

.galeria img{
width:100%;
border-radius:8px;
}

.proceso-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
}

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

input,textarea{
margin:10px 0;
padding:12px;
}

button{
padding:15px;
background:#111;
color:white;
border:none;
}

footer{
background:#111;
color:white;
padding:20px;
text-align:center;
}
