body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#f4f7fb;
color:#333;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:#0a6ebd;
color:white;
}

.logo{
font-size:22px;
font-weight:bold;
}

.logo span{
display:block;
font-size:14px;
font-weight:normal;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

.hero{
height:400px;
background:url("images/hero.jpg") center/cover;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero-text h1{
font-size:40px;
margin-bottom:10px;
}

.cta{
background:#28a745;
padding:12px 20px;
color:white;
text-decoration:none;
border-radius:5px;
}

section{
padding:60px 10%;
text-align:center;
}

.companies{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.company-card{
background:white;
padding:20px 40px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.product-card{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
font-size:18px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:10px;
}

.whatsapp{
background:#25D366;
color:white;
padding:12px 20px;
text-decoration:none;
border-radius:6px;
}

.map iframe{
width:100%;
height:350px;
border:0;
}

footer{
background:#222;
color:white;
text-align:center;
padding:20px;
}