body{
font-family: Arial;
margin:0;
background:#f4f8fb;
color:#333;
}

header{
background:#1e90ff;
color:white;
text-align:center;
padding:25px;
}

nav{
background:#0d6efd;
text-align:center;
padding:12px;
}

nav a{
color:white;
text-decoration:none;
margin:0 15px;
font-weight:bold;
}

.hero{
text-align:center;
padding:80px 20px;
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c");
background-size:cover;
color:white;
}

.hero h1{
font-size:48px;
}

button{
background:#1e90ff;
border:none;
padding:12px 25px;
color:white;
border-radius:5px;
font-size:16px;
cursor:pointer;
margin-top:15px;
}

button:hover{
background:#0d6efd;
}

section{
padding:60px 20px;
max-width:1000px;
margin:auto;
}

.services{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.service{
flex:1;
min-width:250px;
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

footer{
background:#0d6efd;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}