/* Cookie consent + shared legal site header */

.legal-site-header {
  background: #0B2545;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-site-header-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.legal-site-brand img { display: block; }
.legal-site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 18px;
}
.legal-site-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.legal-site-nav a:hover { color: #10B981; }
.legal-site-nav-cta {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #34D399 !important;
}
.legal-site-nav-cta:hover { background: rgba(16, 185, 129, 0.3); color: #6EE7B7 !important; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 16px 20px;
  background: #0B2545;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner p { margin: 0; max-width: 720px; }
.cookie-banner a { color: #34D399; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cookie-banner-btn.accept { background: #10B981; color: #fff; }
.cookie-banner-btn.accept:hover { background: #059669; }
.cookie-banner-btn.decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cookie-banner-btn.decline:hover { border-color: rgba(255, 255, 255, 0.45); }

@media (max-width: 640px) {
  .legal-site-header { height: auto; padding: 12px 16px; }
  .legal-site-header-inner { flex-direction: column; align-items: flex-start; }
  .legal-site-nav { justify-content: flex-start; gap: 8px 14px; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
}
