/* Privacy Policy Word-like Styles */
.privacy-policy {
  margin: 40px auto;
  padding: 40px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Times New Roman", Times, serif;
  font-size: 12pt;
  line-height: 1.5;
  color: #333;
}

.privacy-policy h2 {
  font-size: 16pt;
  font-weight: bold;
  margin: 24px 0 16px;
  color: #000;
  border-bottom: none;
}

.privacy-policy h3 {
  font-size: 14pt;
  font-weight: bold;
  margin: 20px 0 12px;
  color: #000;
}

.privacy-policy p {
  margin: 12px 0;
  text-align: justify;
  hyphens: auto;
}

.privacy-policy ul {
  margin: 12px 0 12px 24px;
  padding: 0;
  list-style-type: disc;
}

.privacy-policy ul li {
  margin: 8px 0;
  padding-left: 8px;
}

.privacy-policy strong {
  font-weight: bold;
  color: #000;
}

.privacy-policy a {
  color: #0000ee;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* Table of Contents specific styles */
.privacy-policy ul:first-of-type {
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
}

.privacy-policy ul:first-of-type li {
  margin: 8px 0;
  padding-left: 0;
}

.privacy-policy ul:first-of-type a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 4px 0;
}

.privacy-policy ul:first-of-type a:hover {
  text-decoration: underline;
}

