/* --- Privacy Policy Content --- */
.policy-section {
  padding: 0px 20px;
  /* Pull the section up by the header AND status bar height */
  margin-top: calc(-65px - env(safe-area-inset-top));

  /* Push the content down by the desired spacing (80px) + the header height + the status bar height */
  padding-top: calc(20px + 65px + env(safe-area-inset-top));
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
}
.policy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.policy-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.policy-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}
.policy-content li {
  list-style-type: disc;
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.policy-content li p {
  margin-bottom: 5px;
}
.policy-content a {
  color: var(--accent-color);
  text-decoration: underline;
}
.policy-content a:hover,
.policy-content a:active,
.policy-content a:focus {
  text-decoration: none;
}
