/* Regulate Legal Documents Stylesheet */
:root {
  --sage-green: #88B04B;
  --soft-coral: #FF6F61;
  --slate-gray: #64748B;
  --off-white: #F5F5F7;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--off-white);
  padding: 0;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
  background-color: white;
  min-height: 100vh;
}

header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--sage-green);
}

header a {
  color: var(--sage-green);
  text-decoration: none;
  font-weight: 500;
}

header a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

li::marker {
  color: var(--sage-green);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

a {
  color: var(--sage-green);
}

a:hover {
  color: #6d9339;
}

hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 32px 0;
}

.meta {
  color: var(--slate-gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.warning {
  background-color: #FFF5F4;
  border-left: 4px solid var(--soft-coral);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.warning p {
  margin-bottom: 0;
  color: var(--text-primary);
}

.caps {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  color: var(--slate-gray);
  font-size: 0.9rem;
}

/* Index page specific */
.document-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.document-card {
  display: block;
  padding: 24px;
  background-color: var(--off-white);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.document-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.document-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--sage-green);
}

.document-card p {
  margin-bottom: 0;
  color: var(--slate-gray);
  font-size: 0.95rem;
}

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}
