*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
line-height:1.8;
color:#222;
background:#f5f5f5;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#0c2340;
padding:20px 0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo h2{
color:#fff;
}

nav ul{
display:flex;
list-style:none;
gap:20px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:bold;
}

.hero{
background:#fff;
padding:80px 0;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
color:#0c2340;
}

.hero p{
margin-bottom:20px;
}

section{
padding:60px 0;
background:#fff;
margin-bottom:20px;
}

h2{
margin-bottom:20px;
color:#0c2340;
}

h3{
margin-bottom:15px;
color:#133b67;
}

.service,
.diff,
.faq-item{
margin-bottom:40px;
padding:25px;
background:#f9f9f9;
border-left:5px solid #0c2340;
}

footer{
background:#0c2340;
color:#fff;
padding:50px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer-links{
text-align:center;
margin-top:30px;
}

.footer-links a{
color:#fff;
margin:0 15px;
text-decoration:none;
}

.copyright{
text-align:center;
margin-top:20px;
font-size:14px;
}

#cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111;
color:#fff;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:999;
}

#cookie-banner button{
padding:10px 20px;
background:#0c2340;
border:none;
color:#fff;
cursor:pointer;
}

.page-content{
padding:60px 0;
background:#fff;
}

.page-content p{
margin-bottom:20px;
}