.privacy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  background-color: #ffffff;
  color: #333333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10000;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.privacy-popup p {
  margin: 0 0 15px 0;
}
.privacy-popup a {
  color: #0066cc;
  text-decoration: underline;
}
.privacy-popup a:hover {
  color: #0052a3;
}
.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: background-color 0.3s;
}
.privacy-popup .accept-btn {
  background-color: #0066cc;
  color: #ffffff;
}
.privacy-popup .accept-btn:hover {
  background-color: #0052a3;
}
.privacy-popup .decline-btn {
  background-color: #f0f0f0;
  color: #333333;
}
.privacy-popup .decline-btn:hover {
  background-color: #e0e0e0;
}
@media (max-width: 480px) {
  .privacy-popup {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 8px 8px 0 0;
    margin: 0;
  }
  .privacy-popup .btn-container {
    flex-direction: column;
  }
  .privacy-popup button {
    width: 100%;
  }
}