#privacy-consent-banner,
#privacy-preferences-modal {
  font-family: Inter, system-ui, sans-serif;
}

.privacy-hidden { display: none !important; }

.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 25, 55, 0.48);
  backdrop-filter: blur(5px);
}

.privacy-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1001;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid rgba(0, 47, 95, 0.12);
  border-radius: 1.25rem;
  background: #fff;
  color: #1a1c1f;
  box-shadow: 0 24px 70px rgba(0, 47, 95, 0.22);
}

.privacy-banner h2,
.privacy-modal h2 { color: #002f5f; font-weight: 800; }
.privacy-banner p,
.privacy-modal p { color: #43474f; line-height: 1.55; }

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.privacy-btn {
  min-height: 44px;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid #002f5f;
  font-weight: 700;
  cursor: pointer;
}

.privacy-btn-primary { background: #c6dd2b; color: #002f5f; border-color: #c6dd2b; }
.privacy-btn-secondary { background: #002f5f; color: #fff; }
.privacy-btn-outline { background: #fff; color: #002f5f; }

.privacy-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  width: min(42rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 47, 95, 0.3);
}

.privacy-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e2e2e7;
}

.privacy-option:first-of-type { margin-top: 1rem; }
.privacy-option input { width: 1.25rem; height: 1.25rem; accent-color: #002f5f; }
.privacy-lock { color: #586400; font-size: .875rem; font-weight: 700; }

@media (min-width: 768px) {
  .privacy-banner { padding: 1.5rem 1.75rem; }
}
