/* ============================================================
   TOOLORA — Legal / informational page content styles
   Loaded alongside main/css/style.css on standalone pages like
   Privacy Policy, Terms, Disclaimer, About, and Contact.
============================================================ */

.legal-hero {
  padding: 64px 0 32px;
  text-align: center;
}
.legal-hero h1 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink-900, #0d1526);
  margin-bottom: 10px;
}
.legal-hero p {
  color: var(--ink-500, #697590);
  font-size: 16px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 80px;
  color: var(--ink-700, #3a4459);
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900, #0d1526);
  margin: 40px 0 12px;
  letter-spacing: -.01em;
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900, #0d1526);
  margin: 24px 0 8px;
}

.legal-content p { margin: 0 0 14px; }

.legal-content ul, .legal-content ol {
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal-content li { margin-bottom: 6px; }

.legal-content a {
  color: var(--blue-600, #2f5fed);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content .updated {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-500, #697590);
  background: var(--bg-tint, #eef4fb);
  border: 1px solid var(--border, #e4e9f2);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.legal-content .callout {
  background: var(--blue-50, #eaf1ff);
  border: 1px solid #d8e3fb;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
}
.legal-content .callout p:last-child { margin-bottom: 0; }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.contact-card {
  border: 1px solid var(--border, #e4e9f2);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  background: #fff;
}
.contact-card i {
  font-size: 26px;
  color: var(--blue-600, #2f5fed);
  margin-bottom: 10px;
  display: block;
}
.contact-card h3 { margin: 0 0 6px; font-size: 16px; }
.contact-card p { margin: 0; font-size: 14px; }
.contact-card a { font-weight: 600; }

/* ---- About page stat row ---- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 28px 0 8px;
  text-align: center;
}
.about-stats div {
  border: 1px solid var(--border, #e4e9f2);
  border-radius: 12px;
  padding: 18px 10px;
  background: var(--bg-tint, #eef4fb);
}
.about-stats strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-600, #2f5fed);
}
.about-stats span {
  font-size: 12.5px;
  color: var(--ink-500, #697590);
}
