.site-header{
  position:fixed;
  top:0;left:0;width:100%;
  background:#fff;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.header-inner{
  max-width:1200px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo img{height:48px}

.main-nav{display:flex;gap:24px}
.main-nav a{text-decoration:none;color:#111;font-weight:600}

.burger{display:none;flex-direction:column;gap:6px;border:none;background:none}
.burger span{width:26px;height:3px;background:#111}

.mobile-nav{
  position:fixed;
  inset:0;
  background:#00529B;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:20px;
}
.mobile-nav a{color:#fff;font-size:20px;font-weight:700}
.mobile-nav.active{display:flex}
.mobile-contact-btn{
  background:#fff;
  color:#00529B;
  padding:12px 26px;
  border-radius:999px;
}

.mobile-nav .mobile-contact-btn{
    background:#fff;
    color : #00529B !important;
}

@media(max-width:900px){
  .main-nav{display:none}
  .burger{display:flex}
}

/* COOKIES */
.cookie-banner{
  display:none;
  position:fixed;
  bottom:0;left:0;width:100%;
  background:#111;color:#fff;
  z-index:2000;
}
.cookie-inner{
  max-width:1200px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.cookie-actions button{
  border:none;
  padding:8px 16px;
  border-radius:20px;
  font-weight:700;
}
#acceptCookies{background:#00529B;color:#fff}
#rejectCookies{background:#555;color:#fff}


/* ================= COOKIE MODAL ================= */

.cookie-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:3000;
}

.cookie-modal.active{
  display:flex;
}

.cookie-box{
  background:#fff;
  max-width:420px;
  width:90%;
  padding:28px 26px 24px;
  border-radius:18px;
  position:relative;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}

.cookie-box h3{
  margin-bottom:12px;
  font-size:20px;
  color:#00529B;
}

.cookie-box p{
  font-size:14px;
  color:#333;
  margin-bottom:24px;
}

.cookie-actions{
  display:flex;
  gap:12px;
  justify-content:center;
}

.cookie-actions button{
  padding:10px 20px;
  border-radius:999px;
  border:none;
  font-weight:700;
  cursor:pointer;
}

.btn-accept{
  background:#00529B;
  color:#fff;
}

.btn-reject{
  background:#eee;
  color:#111;
}

.cookie-close{
  position:absolute;
  top:10px;
  right:12px;
  background:none;
  border:none;
  font-size:18px;
  cursor:pointer;
  color:#555;
}

