/* Document pages - Billie brand (matches landing page styles.css) */
:root {
  --primary: #239400;
  --secondary: #CAE8FA;
  --foreground: #1A1A1A;
  --background: #F7F9F7;
  --muted-foreground: #5A5A5A;
  --card: #ffffff;
  --border: #e5e5e5;
}

body {
  font-family: 'Alata', 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
}

nav {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.logo img {
  height: 40px;
}

.nav-menu a {
  color: var(--foreground);
}

.nav-menu a:hover {
  color: var(--primary);
}

.content-wrapper {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

h1, h2, h3 {
  color: var(--foreground);
  font-family: 'Bebas Neue', serif;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.pl-6 { padding-left: 1.5rem; }
.list-disc { list-style-type: disc; }
