/* DayTronX — privacy.css
   Clean readable document page. White bg, max-width 800px column,
   Figtree headings (h2 with teal left rule), Manrope body, generous
   line-height for scannable reading. */

.privacy-page {
  background: var(--dt-white);
  padding: 80px 40px 100px;
}
.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dt-teal);
}
.privacy-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 44px;
  color: var(--dt-dark);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-top: 12px;
}
.privacy-meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dt-text-muted);
  margin-top: 10px;
  font-style: italic;
}

.privacy-page h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--dt-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 56px 0 18px;
  padding-left: 18px;
  border-left: 4px solid var(--dt-teal);
}
.privacy-page h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--dt-dark);
  margin: 32px 0 12px;
}
.privacy-page p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--dt-dark);
  margin-bottom: 18px;
}
.privacy-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.privacy-page ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dt-dark);
}
.privacy-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 2px;
  background: var(--dt-teal);
}
.privacy-page a {
  color: var(--dt-teal);
  font-weight: 500;
}
.privacy-page a:hover {
  color: var(--dt-teal-dark);
  text-decoration: underline;
}
.privacy-page strong {
  font-weight: 600;
  color: var(--dt-dark);
}

@media (max-width: 768px) {
  .privacy-page { padding: 56px 24px 80px; }
  .privacy-title { font-size: 32px; }
  .privacy-page h2 { font-size: 20px; margin: 40px 0 14px; padding-left: 14px; }
  .privacy-page h3 { font-size: 17px; }
}
