.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: #f8f9fa;
  color: #333;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  border-radius: 8px 8px 0 0;
  z-index: 9999;
  display: none;
  box-sizing: border-box;
}
.privacy-popup p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
}
.privacy-popup a {
  color: #007bff;
  text-decoration: underline;
}
.privacy-popup .btn-container {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.privacy-popup button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.2s;
}
.privacy-popup .accept-btn {
  background-color: #007bff;
  color: white;
}
.privacy-popup .decline-btn {
  background-color: #6c757d;
  color: white;
}
.privacy-popup button:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .privacy-popup {
    width: calc(100% - 24px);
    margin: 0 12px;
    left: 0;
    transform: none;
  }
  .privacy-popup .btn-container {
    flex-direction: column;
  }
  .privacy-popup button {
    width: 100%;
  }
}