/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
}


/* Global background */

body{

font-family: Arial, Helvetica, sans-serif;
background:#eef2f6;
color:#333;

}


/* Header */

.site-header{

background:#0b3b6e;
color:white;

}

.header-container{

max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:16px 20px;

}


/* Logo */

.logo-area{

display:flex;
align-items:center;

}

.logo-area img{

height:50px;
margin-right:12px;

}


/* Company text */

.company-text h1{

font-size:20px;

}

.company-text p{

font-size:12px;
opacity:0.8;

}


/* Navigation */

.main-nav a{

color:white;
text-decoration:none;
margin-left:20px;
font-weight:600;
font-size:14px;

}

.main-nav a:hover{

opacity:0.8;

}


/* Footer */

.site-footer{

background:#0b3b6e;
color:white;
text-align:center;
padding:18px;
margin-top:60px;
font-size:14px;

}