*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#f4f6f8;
color:#333;
}


/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#004080;
color:white;
}

.navbar ul{
display:flex;
gap:20px;
list-style:none;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:bold;
}


/* HERO */

.hero{
position:relative;
height:500px;
}

.hero img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.5);
color:white;
padding:30px;
border-radius:10px;
text-align:center;
}

.cta{
background:#ffcc00;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:black;
display:inline-block;
margin-top:10px;
}


/* SECTIONS */

section{
max-width:1100px;
margin:auto;
padding:60px 20px;
text-align:center;
}

h2{
margin-bottom:20px;
color:#004080;
}


/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}


/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:10px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
}


/* FORM */

form{
display:flex;
flex-direction:column;
gap:10px;
max-width:400px;
margin:auto;
}

input,select{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
}

button{
padding:12px;
background:#004080;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}


/* MAP */

#map{
width:100%;
height:350px;
border:0;
margin-top:20px;
border-radius:10px;
}


/* FOOTER */

footer{
background:#004080;
color:white;
text-align:center;
padding:20px;
}

.social i{
font-size:25px;
margin:10px;
color:white;
}


/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
font-size:30px;
padding:15px;
border-radius:50%;
}


/* MOBILE */

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:10px;
}

.hero{
height:350px;
}

}