body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#f4f6f9;
color:#333;
line-height:1.6;
}

.container{
max-width:1000px;
margin:auto;
padding:20px;
}

.hero{
background:#0a2540;
color:white;
padding:60px 20px;
text-align:center;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.hero p{
font-size:20px;
opacity:.9;
}

.metrics{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
margin:40px 0;
}

.metric{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,.1);
text-align:center;
width:220px;
}

.metric h2{
margin:0;
color:#1a73e8;
}

.section{
margin:50px 0;
}

.section h2{
border-bottom:3px solid #1a73e8;
padding-bottom:10px;
margin-bottom:20px;
}

.job{
margin-bottom:25px;
}

.cta{
background:#1a73e8;
color:white;
padding:30px;
text-align:center;
border-radius:6px;
margin-top:40px;
}

.cta a{
color:white;
text-decoration:none;
font-weight:bold;
}

footer{
text-align:center;
margin:40px 0;
font-size:14px;
color:#777;
}

@media(max-width:700px){

.hero h1{
font-size:30px;
}

.metrics{
flex-direction:column;
align-items:center;
}

.metric{
width:90%;
}

}