.privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #333333;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  z-index: 10000;
  max-width: 90%;
  width: 400px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.privacy-popup p {
  margin: 0 0 15px 0;
}
.privacy-popup a {
  color: #4285f4;
  text-decoration: none;
}
.privacy-popup a:hover {
  text-decoration: underline;
}
.privacy-popup .btn-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.privacy-popup button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}
.privacy-popup .accept-btn {
  background-color: #4285f4;
  color: white;
}
.privacy-popup .accept-btn:hover {
  background-color: #357ae8;
}
.privacy-popup .decline-btn {
  background-color: #f0f0f0;
  color: #333;
}
.privacy-popup .decline-btn:hover {
  background-color: #e0e0e0;
}
@media (max-width: 480px) {
  .privacy-popup {
    bottom: 10px;
    width: 95%;
    padding: 15px;
    font-size: 13px;
  }
  .privacy-popup .btn-container {
    flex-direction: column;
  }
  .privacy-popup button {
    width: 100%;
  }
}