
*{box-sizing:border-box}
body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#e9eef2;
color:#1f3550;
}
.header{
background:#fff;
border-top:8px solid #0587c7;
}
.header-inner{
width:980px;
margin:0 auto;
height:110px;
display:flex;
justify-content:space-between;
align-items:center;
}
.logo{height:88px}
.tagline{
font-size:22px;
font-style:italic;
color:#0b77b4;
}
.nav{
background:#0587c7;
text-align:center;
}
.nav a{
display:inline-block;
padding:16px 24px;
color:#fff;
font-weight:bold;
text-decoration:none;
font-size:14px;
}
.container{
width:980px;
margin:30px auto;
background:#fff;
box-shadow:0 2px 12px rgba(0,0,0,.15);
}
.hero{
height:420px;
background:url('images/hero_cityscape.png') center/cover no-repeat;
position:relative;
}
.overlay{
position:absolute;
left:40px;
top:40px;
bottom:auto;
width:420px;
background:rgba(255,255,255,.86);
padding:28px;
border-left:6px solid #0587c7;
}
.overlay h1{
margin:0 0 14px;
color:#005f93;
font-size:46px;
line-height:1.0;
}
.overlay p{
font-size:17px;
line-height:1.5;
margin:0;
}
.section{
padding:35px;
}
.section h2{
color:#005f93;
margin-top:0;
}
.cards{
display:flex;
gap:20px;
padding:0 35px 35px;
}
.card{
flex:1;
border:1px solid #d3dde5;
background:#fafcfd;
}
.card img{
width:100%;
height:140px;
object-fit:cover;
display:block;
}
.card-content{
padding:18px;
}
.card h3{
color:#005f93;
margin-top:0;
}
.card p{
font-size:15px;
line-height:1.6;
}
.footer{
background:#004d75;
color:#fff;
text-align:center;
padding:20px;
font-size:13px;
}
.page{
padding:35px;
}
.page h1{
color:#005f93;
}
.page p{
font-size:16px;
line-height:1.7;
}
@media(max-width:1000px){
.container,.header-inner{width:95%}
.cards{flex-direction:column}
.overlay{
position:static;
width:auto;
margin:20px;
}
.hero{height:auto;padding-bottom:20px}
}
