.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 51%;
  max-width: 600px;
  background-color: #f8f9fa;
  color: #333;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  border-radius: 8px 8px 0 0;
  display: none;
  z-index: 10000;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.privacy-popup p {
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.privacy-popup a {
  color: #0066cc;
  text-decoration: underline;
}
.privacy-popup .btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.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: #28a745;
  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: 90%;
    font-size: 13px;
  }
  .privacy-popup button {
    padding: 8px 15px;
    font-size: 13px;
  }
}