/* SilverPath Legal — Clean, document-like, professional */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.site-header .brand {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-header .brand:hover {
  color: #2E7D32;
}

.site-header .open-app {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.site-header .open-app:hover {
  color: #2E7D32;
  text-decoration: underline;
}

/* Page title block */
h1 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.last-updated {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
}

/* Table of contents */
.toc {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 36px;
}

.toc-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 10px;
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.toc a {
  color: #2E7D32;
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

/* Section headings */
h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 8px;
  line-height: 1.3;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-top: 24px;
  margin-bottom: 8px;
}

h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
  margin-bottom: 6px;
}

/* Body text */
p {
  margin-bottom: 16px;
}

/* Lists */
ul, ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

/* Links */
a {
  color: #2E7D32;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Bold */
strong {
  font-weight: 600;
}

/* "In Short" callouts */
.in-short {
  font-style: italic;
  color: #555;
  margin-bottom: 16px;
}

/* Intro block */
.intro-block {
  background: #fafafa;
  border-left: 3px solid #2E7D32;
  padding: 16px 20px;
  margin-bottom: 32px;
  border-radius: 0 6px 6px 0;
}

.intro-block p {
  margin-bottom: 10px;
  font-size: 15px;
}

.intro-block p:last-child {
  margin-bottom: 0;
}

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 13px;
}

.data-table th,
.data-table td {
  border: 1px solid #e5e5e5;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: #fafafa;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
}

/* Footer */
.site-footer {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  font-size: 13px;
  color: #888;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #2E7D32;
}

.footer-copy {
  font-size: 12px;
  color: #aaa;
}

/* Mobile */
@media (max-width: 600px) {
  body {
    padding: 24px 16px;
  }

  h1 {
    font-size: 24px;
  }

  .toc {
    padding: 16px 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
