/* Gizlilik Politikası Popup için stil */
.privacy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
}
.privacy-modal-content {
  background: #fff;
  max-width: 900px;
  margin: 40px auto;
  padding: 0;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  overflow: hidden;
}
.privacy-iframe {
  border: none;
  display: block;
  width: 100%;
  height: 865px;
  border-radius: 0 0 16px 16px;
}
