/* ===== Модальное окно политики конфиденциальности ===== */

.privacy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.privacy-modal-box {
  background: #fff;
  color: #1a1a1a;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.privacy-modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #1a1a1a;
  padding: 4px 8px;
  border-radius: 6px;
}

.privacy-modal-close:hover {
  background: rgba(0, 0, 0, 0.08);
}

.privacy-modal-content h1 {
  font-size: 22px;
  margin-top: 0;
}

.privacy-modal-content h2 {
  font-size: 17px;
  margin-top: 24px;
}

.privacy-modal-content h3 {
  font-size: 15px;
  margin-top: 16px;
}

.privacy-modal-loading {
  padding: 40px;
  text-align: center;
  color: #666;
}
