.policy-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;

  scroll-behavior: smooth;

  min-height: 0;
}

.policy-body {
  -webkit-overflow-scrolling: touch;
}

.policy-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 20px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(28, 14, 47, 0.98),
    rgba(14, 12, 30, 0.95)
  );

  border-bottom: 1px solid var(--line);
}

.policy-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

    .policy-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}

.policy-meta {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.policy-content h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  color: #fff;
}

.policy-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 18px;
  margin: 10px 0;
}

.policy-content ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.highlight-email {
  font-weight: bold;
  color: #f45eea; /* your pink */
}

.policy-body::-webkit-scrollbar {
  width: 6px;
}

.policy-body::-webkit-scrollbar-track {
  background: transparent;
}

.policy-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5f8dff, #f45eea);
  border-radius: 10px;
}

.policy-body::-webkit-scrollbar {
  width: 6px;
}

.policy-body::-webkit-scrollbar-track {
  background: transparent;
}

.policy-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5f8dff, #f45eea);
  border-radius: 10px;
}
.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: bold;
  color: #fff;

  border-radius: 50%;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
  z-index: 20;
}