/* Privacy Modal */
.privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.privacy-modal.active {
  display: flex;
}

.privacy-modal-content {
  background: #fff;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.privacy-modal-header {
  padding: 24px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.privacy-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.privacy-modal-close:hover {
  color: #333;
}

.privacy-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.privacy-modal-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.privacy-modal-body h3:first-child {
  margin-top: 0;
}

.privacy-modal-body p {
  margin-bottom: 12px;
}

.privacy-modal-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.privacy-modal-body li {
  margin-bottom: 8px;
  font-size: 15px;
}
