/* Privacy Policy Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-overlay.hidden {
  display: none;
}
.modal-content {
  background: #fff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 320px;
  max-width: 900px;
  width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .modal-content {
    max-width: 98vw;
  }
}
.modal-bar {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #193442 0%, #2a4d5f 100%);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem 1.2rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e9ecef;
}
.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #193442;
}
.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #193442;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: #e9ecef;
  color: #14475d;
}
.modal-body {
  padding: 2rem 2rem 1.5rem 2rem;
  overflow-y: auto;
  font-family: inherit;
  line-height: 1.7;
  color: #222;
}
.modal-body h3 {
  color: #193442;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.modal-body h3:first-child {
  margin-top: 0;
}
.modal-body p {
  color: #222;
  margin-bottom: 1rem;
  text-align: left;
}
.modal-body ul {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1.2rem;
  color: #222;
}
.modal-body li {
  margin-bottom: 0.5rem;
}
.modal-body strong {
  color: #193442;
  font-weight: 600;
}
@media (max-width: 600px) {
  .modal-content {
    max-width: 98vw;
    padding: 0;
  }
  .modal-header, .modal-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .modal-body {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .modal-header h2 {
    font-size: 1.1rem;
  }
} 