*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
color:#333;
background:#f8fbff;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.announcement{
background:#004c8c;
color:#fff;
text-align:center;
padding:12px;
font-weight:600;
letter-spacing:1px;
}

header{
/*padding:60px 0;*/
background:#fff;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.hero-image{
flex:1;
}

.hero-image img{
width:100%;
max-width:430px;
display:block;
margin:auto;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.hero-content{
flex:1;
}

.hero-content h1{
font-size:48px;
color:#003b71;
margin-bottom:10px;
}

.hero-content h2{
font-size:22px;
color:#0070c9;
margin-bottom:25px;
font-weight:500;
}

.hero-content p{
margin-bottom:35px;
font-size:17px;
}

.buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:15px 28px;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.primary{
background:#0070c9;
color:#fff;
}

.primary:hover{
background:#004f8c;
}

.secondary{
border:2px solid #0070c9;
color:#0070c9;
}

.secondary:hover{
background:#0070c9;
color:#fff;
}

.specialties{
padding:80px 0;
}

.specialties h2{
text-align:center;
font-size:38px;
margin-bottom:45px;
color:#003b71;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card h3{
margin-bottom:20px;
color:#0070c9;
}

.card ul{
padding-left:20px;
}

.contact{
padding:70px 0;
background:#eef7ff;
}

.contact h2{
text-align:center;
margin-bottom:40px;
color:#003b71;
}

.contact-box{
display:flex;
justify-content:center;
gap:120px;
flex-wrap:wrap;
text-align:center;
}

footer{
background:#003b71;
padding:35px 0;
color:#fff;
text-align:center;
}

footer img{
margin-top: 20px;
margin-bottom:15px;
}
.footer-social{
    margin-bottom:15px;
}

.footer-social a{
    color:#fff;
    font-size:30px;
    transition:.3s;
}

.footer-social a:hover{
    color:#66b3ff;
}
@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-content h1{
font-size:36px;
}

.cards{
grid-template-columns:1fr;
}

.buttons{
justify-content:center;
}

.contact-box{
gap:40px;
}

}

@media(max-width:500px){

.hero-content h1{
font-size:30px;
}

.hero-content h2{
font-size:18px;
}

.specialties h2{
font-size:30px;
}

.btn{
width:100%;
text-align:center;
}

}