.consent-banner {
  position: fixed;
  z-index: 10000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 20px;
  border-top: 1px solid #b9cbc7;
  background: #fff;
  color: #04141b;
  box-shadow: 0 -8px 28px rgba(4, 20, 27, .16);
  font-family: Arial, sans-serif;
}
.consent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.consent-inner strong { display: block; margin-bottom: 4px; font-size: 16px; }
.consent-inner p { max-width: 720px; margin: 0; color: #41535a; font-size: 13px; line-height: 1.45; }
.consent-actions { display: flex; gap: 10px; }
.consent-actions button,
.consent-manage {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #086b70;
  border-radius: 5px;
  font: 700 13px/1.2 Arial, sans-serif;
  cursor: pointer;
}
.consent-accept { background: #086b70; color: #fff; }
.consent-reject { background: #fff; color: #064f54; }
.consent-manage {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
}
.footnav .consent-manage { align-self: baseline; }
@media (max-width: 720px) {
  .consent-banner { padding: 14px 16px; }
  .consent-inner { grid-template-columns: 1fr; gap: 12px; }
  .consent-actions { display: grid; grid-template-columns: 1fr; }
  .consent-actions button { width: 100%; }
}
