
body{
margin:0;
font-family:Arial;
background:linear-gradient(180deg,#2f6fb3,#5fa0e0,#eef3f9);
color:#1a1a1a;
}

.topbar{
text-align:center;
padding:40px;
background:#2f6fb3;
color:white;
}

.topbar h1{
font-size:50px;
margin:0;
}

.hero{
background:url('images/hero.jpg') center/cover no-repeat;
height:520px;
display:flex;
align-items:center;
justify-content:center;
}

.hero-box{
background:rgba(0,0,0,0.55);
padding:40px;
border-radius:12px;
text-align:center;
color:white;
}

.hero-box h2{
color:white;
font-size:34px;
margin-bottom:20px;
}

.hero-box input{
display:block;
margin:10px auto;
padding:12px;
width:260px;
border-radius:5px;
border:none;
}

.hero-box button{
padding:14px 28px;
background:#d4af37;
border:none;
color:white;
font-weight:bold;
cursor:pointer;
}

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

section h2{
color:#0b2545;
font-size:36px;
margin-bottom:30px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
max-width:1000px;
margin:auto;
}

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 22px rgba(0,0,0,0.18);
text-decoration:none;
color:#111;
font-weight:600;
transition:transform .2s;
}

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

footer{
background:#2f6fb3;
color:white;
padding:30px;
text-align:center;
}
