*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;
color:#333;
line-height:1.7;
background:#f7f9fc;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

header{

background:linear-gradient(135deg,#0b4f7b,#1679b8);
color:#fff;
padding:80px 0;

}

.hero{

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;

}

.announcement {
    background: #004c8c;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
	    margin-top: -80px;
    margin-bottom: 65px;
}

.hero-image{

flex:1;
text-align:center;

}

.hero-image img{

width:100%;
max-width:400px;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.hero-content{

flex:1;

}

.badge{

display:inline-block;
padding:8px 18px;
background:#fff;
color:#0b4f7b;
font-weight:600;
border-radius:50px;
margin-bottom:20px;

}

h1{

font-size:39px;
margin-bottom:10px;

}

h2{

font-size:25px;
margin-bottom:20px;

}

.hero p{

margin-bottom:30px;

}

.hero-buttons{

display:flex;
gap:15px;
flex-wrap:wrap;

}

.btn{

background:#fff;
color:#0b4f7b;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.btn:hover{

transform:translateY(-3px);

}

.secondary{

background:transparent;
border:2px solid #fff;
color:#fff;

}

section{

padding:60px 0;

}

section h2{

text-align:center;
margin-bottom:40px;
color:#0b4f7b;
font-size: 32px;
}

.about p{

max-width:900px;
margin:auto;
text-align:center;

}

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;

}

.card{

background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.card ul{

margin-top:20px;
padding-left:20px;

}

.location-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

}

.location{

background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.location a{

display:inline-block;
margin-top:15px;
font-weight:600;
text-decoration:none;
color:#0b4f7b;

}

.cta{

background:#0b4f7b;
color:#fff;
text-align:center;

}

.cta p{

max-width:700px;
margin:20px auto 35px;

}

footer{

background:#061d2d;
color:#fff;
padding:40px 0;

}

.footer-content{

display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;

}

.logo{

max-height:60px;

}

@media(max-width:768px){

.hero{

flex-direction:column;

}

h1{

font-size:34px;

}

h2{

font-size:22px;

}

.hero-content{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.footer-content{

text-align:center;
justify-content:center;

}

}