
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f4f7fb;
color:#222;
line-height:1.8;
}

header{
background:linear-gradient(135deg,#0b3d91,#1565c0);
padding:20px;
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 20px rgba(0,0,0,.12);
}

.logo{
text-align:center;
font-size:34px;
font-weight:800;
color:white;
margin-bottom:18px;
}

.menu-btn{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
margin:auto;
padding:14px 24px;
border:none;
border-radius:14px;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(10px);
color:white;
font-size:17px;
font-weight:700;
cursor:pointer;
transition:0.3s;
box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

.menu-btn:hover{
transform:translateY(-2px);
background:rgba(255,255,255,0.22);
}

.dropdown{
position:absolute;
left:50%;
transform:translateX(-50%);
top:120px;
display:none;
flex-direction:column;
gap:10px;
width:320px;
max-height:420px;
overflow-y:auto;
padding:18px;
background:white;
border-radius:18px;
box-shadow:0 10px 40px rgba(0,0,0,0.12);
z-index:999;
animation:menuFade 0.25s ease;
}

.dropdown.show{
display:flex;
}

.dropdown a{
display:block;
padding:12px 15px;
border-radius:12px;
text-decoration:none;
background:#f3f6ff;
color:#0b3d91;
font-weight:700;
font-size:15px;
transition:0.25s;
}

.dropdown a:hover{
background:#0b3d91;
color:white;
transform:translateX(3px);
}

.container{
max-width:1150px;
margin:50px auto;
padding:0 20px;
}

.hero,.page-content{
background:white;
padding:60px;
border-radius:24px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.hero h1,.page-content h1{
font-size:46px;
margin-bottom:20px;
color:#0b3d91;
}

.hero h2,.page-content h2{
font-size:30px;
margin-top:35px;
margin-bottom:18px;
color:#0b3d91;
}

.hero h3,.page-content h3{
font-size:24px;
margin-top:30px;
margin-bottom:15px;
color:#0b3d91;
}

.hero p,.page-content p{
font-size:18px;
margin-bottom:18px;
}

.page-content ul,.hero ul{
margin-left:25px;
margin-bottom:20px;
}

.hero-btn{
display:inline-block;
padding:14px 24px;
background:#0b3d91;
color:white;
text-decoration:none;
border-radius:12px;
font-weight:700;
margin-top:10px;
}

.section{
max-width:1150px;
margin:auto;
padding:20px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:22px;
margin-top:20px;
}

.card{
background:white;
padding:28px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:0.3s;
}

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

.card h3{
margin-bottom:15px;
color:#0b3d91;
}

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
margin-top:20px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border:1px solid #ccc;
border-radius:10px;
font-size:16px;
}

.contact-form textarea{
height:180px;
}

.contact-form button{
background:#0b3d91;
color:white;
padding:14px;
border:none;
border-radius:10px;
font-size:16px;
cursor:pointer;
}

footer{
background:#111;
color:white;
text-align:center;
padding:40px 20px;
margin-top:60px;
}

.footer-links{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-top:20px;
}

.footer-links a{
background:#0b3d91;
color:white;
text-decoration:none;
padding:12px 18px;
border-radius:10px;
font-weight:700;
}

@keyframes menuFade{
from{
opacity:0;
transform:translateX(-50%) translateY(-10px);
}
to{
opacity:1;
transform:translateX(-50%) translateY(0);
}
}

@media(max-width:768px){

.hero,.page-content{
padding:35px 25px;
}

.hero h1,.page-content h1{
font-size:34px;
}

.dropdown{
width:92%;
}
}
