
:root{--accent:#0b78b3;--dark:#0b3b59;--muted:#666}
*{box-sizing:border-box}
body{font-family:Inter, Arial, sans-serif;line-height:1.6;margin:0;color:#222;background:#f7fbfd}
.header{display:flex;align-items:center;justify-content:space-between;padding:12px 20px;background:linear-gradient(90deg, rgba(11,59,89,0.05), rgba(11,119,179,0.03));position:sticky;top:0;z-index:100}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:64px;width:64px;object-fit:contain}
.brand .title{font-weight:700;font-size:20px;color:var(--dark)}
.contact{display:flex;flex-direction:column;align-items:flex-end;gap:6px}
.phone{font-weight:600}
.phone i{margin-right:6px}
.nav{background:white;padding:10px 20px;box-shadow:0 1px 0 rgba(0,0,0,0.05);}
.nav ul{list-style:none;display:flex;gap:18px;margin:0;padding:0;flex-wrap:wrap}
.nav a{color:var(--dark);text-decoration:none;font-weight:600}
.header-image{width:100%;height:auto;object-fit:contain;max-height:420px}
.container{max-width:1100px;margin:28px auto;padding:0 18px}
h1,h2{color:var(--dark)}
.hero{background:white;padding:20px;border-radius:10px;box-shadow:0 6px 18px rgba(11,59,89,0.06)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;margin-top:14px}
.card{background:white;padding:14px;border-radius:10px;box-shadow:0 6px 18px rgba(11,59,89,0.04)}
.footer{background:#0b3b59;color:white;padding:18px;text-align:center;margin-top:30px}
.footer a{color:inherit}
.hidden-backlinks{display:none}
@media(max-width:720px){
 .header{padding:8px}
 .brand .title{font-size:16px}
 .header img{height:48px;width:48px}
 .header-image{height:auto;max-height:320px}
 .contact{align-items:flex-start}
 .nav ul{gap:10px}
}

.faq-section{margin-top:40px;padding:20px;background:#fff;border-radius:10px;box-shadow:0 6px 18px rgba(0,0,0,0.06)}
.faq-section h2{margin-bottom:15px}
.faq-item{margin-bottom:15px}
.faq-item h3{margin:0;font-size:1.1em;color:var(--dark)}
.faq-item p{margin:5px 0 0 0}
