/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(1,43,68,0.95);
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(1,43,68,0.18);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1200;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top svg { width:18px; height:18px; fill:currentColor; }

@media (max-width: 520px) {
  .scroll-top { right: 12px; bottom: 12px; width:40px; height:40px; }
}

/* GDPR / cookie consent banner */
.gdpr-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 84px; /* above scroll-top button */
  background: rgba(1,43,68,0.96);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 1250;
  box-shadow: 0 8px 30px rgba(1,43,68,0.25);
}

.gdpr-banner p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.95); }
.gdpr-banner .gdpr-actions { margin-left: auto; display:flex; gap:8px; align-items:center; }
.gdpr-banner .gdpr-actions .btn { background: #fff; color: #012b44; border-radius: 8px; padding:8px 12px; border:0; cursor:pointer; }
.gdpr-banner .gdpr-actions a { color: rgba(255,255,255,0.95); text-decoration:underline; font-size:13px; }

@media (max-width:600px) {
  .gdpr-banner { flex-direction: column; align-items:stretch; bottom:74px; }
  .gdpr-banner .gdpr-actions { margin-left:0; justify-content:flex-end; }
}
