.marsico-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  color: #2c3e35;
  border: 1px solid #4db8a4;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
  padding: 18px 18px 16px;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.marsico-consent-inner { display: flex; flex-direction: column; gap: 10px; }
.marsico-consent-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2d8a79;
}
.marsico-consent-msg { margin: 0; color: #2c3e35; }
.marsico-consent-links { font-size: 12px; }
.marsico-consent-links a { color: #2d8a79; text-decoration: underline; }
.marsico-consent-links a:hover { color: #1f6a5e; }
.marsico-consent-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.marsico-consent-btn {
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.marsico-consent-reject {
  background: #f5faf9;
  color: #2c3e35;
  border: 1px solid #cfe4df;
}
.marsico-consent-reject:hover { background: #e8f7f5; }
.marsico-consent-accept {
  background: #4db8a4;
  color: #ffffff;
}
.marsico-consent-accept:hover { background: #3aa08e; }

@media (max-width: 480px) {
  .marsico-consent-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px; }
  .marsico-consent-actions { justify-content: stretch; }
  .marsico-consent-btn { flex: 1; }
}
