
body{
font-family:Arial;
margin:0;
line-height:1.6;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.header{
background:#0a2540;
color:white;
padding:15px 0;
position:sticky;
top:0;
}

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

.hero{
height:90vh;
background:url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h2{
font-size:40px;
}

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

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

.gray{
background:#f4f4f4;
}

.grid{
display:flex;
flex-wrap:wrap;
gap:20px;
justify-content:center;
}

.card{
background:white;
padding:20px;
width:300px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:transform .3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:180px;
object-fit:cover;
}

.map iframe{
width:100%;
height:350px;
border:0;
}

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

@media(max-width:768px){
.hero h2{
font-size:28px;
}
.grid{
flex-direction:column;
align-items:center;
}
}
