.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 16px 20px;
  background: #ffffff;
  color: #011c31;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(1, 28, 49, 0.18);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.consent-banner[hidden] {
  display: none;
}

.consent-text {
  flex: 1 1 280px;
  margin: 0;
}

.consent-link {
  color: #02528a;
  text-decoration: underline;
  margin-right: auto;
}

.consent-link:hover {
  color: #013d68;
}

.consent-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.consent-btn-accept {
  background: #02528a;
  color: #ffffff;
}

.consent-btn-accept:hover {
  background: #013d68;
}

.consent-btn-decline {
  background: transparent;
  color: #011c31;
  border: 1px solid rgba(1, 28, 49, 0.25);
}

.consent-btn-decline:hover {
  background: rgba(1, 28, 49, 0.06);
}

@media (max-width: 768px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 14px 16px;
  }
  .consent-link {
    margin: 0 auto;
  }
  .consent-btn {
    width: 100%;
  }
}
