*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,Arial,sans-serif;
}

body{
background:#f4f8fc;
color:#222;
}

header{
background:#003b73;
padding:12px 20px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
position:sticky;
top:0;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
width:70px;
height:70px;
border-radius:50%;
background:#fff;
padding:4px;
}

.logo-title h1{
font-size:42px;
font-weight:900;
color:#fff;
line-height:1;
}

.logo-title p{
font-size:16px;
color:#ffd54f;
font-weight:700;
}

nav ul{
display:flex;
list-style:none;
gap:18px;
flex-wrap:wrap;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-size:18px;
font-weight:700;
}

.hero{
background:linear-gradient(135deg,#0055a5,#008cff);
padding:50px 20px;
text-align:center;
color:#fff;
}

.hero h2{
font-size:42px;
font-weight:900;
margin-bottom:15px;
}

.hero p{
font-size:20px;
max-width:900px;
margin:auto;
line-height:1.8;
}

.hero-image{
margin-top:30px;
}

.hero-image img{
width:180px;
height:180px;
border-radius:50%;
border:6px solid #fff;
object-fit:cover;
box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.info{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
padding:50px 20px;
}

.card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.card h3{
font-size:25px;
color:#003b73;
margin-bottom:10px;
}

.card p{
font-size:17px;
line-height:1.8;
}

.management{
background:#eef5ff;
padding:50px 20px;
text-align:center;
}

.management h2{
font-size:36
