*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f5f7fa;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
padding:40px 0;
}

header{
background:#0f3d73;
color:white;
padding:20px 0;
}

header h1{
text-align:center;
}

nav ul{
display:flex;
justify-content:center;
gap:25px;
list-style:none;
margin-top:15px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

.hero{
height:500px;
background:linear-gradient(
rgba(0,0,0,0.5),
rgba(0,0,0,0.5)
),
url('../images/school.jpg');
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.hero h2{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:20px;
}

.btn{
background:#ffb400;
padding:15px 30px;
text-decoration:none;
color:black;
font-weight:bold;
border-radius:6px;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:600px;
}

input,
textarea{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
}

button{
background:#0f3d73;
color:white;
padding:12px;
border:none;
cursor:pointer;
border-radius:6px;
}

footer{
background:#0f3d73;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

.map{
margin-top:20px;
}