/* Legal Document Styling */
:root {
  --primary-color: #FFD700;
  --secondary-color: #1a1a2e;
  --accent-color: #e94560;
  --dark-bg: #0f0f1e;
  --dark-card: #16162a;
  --dark-lighter: #1e1e38;
  --light-bg: #f8f9fa;
  --text-primary: #ffffff;
  --text-secondary: #b0b0c8;
  --text-dark: #2c3e50;
  --border-color: rgba(255, 215, 0, 0.2);
}

/* Legal document typography */
h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

ul, ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-left: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.75rem;
}

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

.legal-intro {
  background: var(--dark-card);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 4px;
}

.legal-intro p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--border-color), transparent);
  margin: 3rem 0;
}

.contact-info {
  background: var(--dark-card);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 3rem;
  border: 1px solid var(--border-color);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-top: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow);
}