:root {
    --primary-color: #007aff;
    --secondary-color: #0056b3;
    --background-color: #ffffff;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --accent-color: #f5f5f7;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
}

.prose h1 { font-size: 2.25rem; line-height: 1.2; font-weight: 700; color: #111827; margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.875rem; line-height: 1.3; font-weight: 700; color: #1f2937; margin: 2rem 0 1rem; }
.prose h3 { font-size: 1.5rem; line-height: 1.35; font-weight: 700; color: #374151; margin: 1.5rem 0 0.75rem; }
.prose p { color: #4b5563; margin-bottom: 1rem; line-height: 1.75; }
.prose ul { list-style: disc inside; margin-bottom: 1rem; }
.prose li { color: #4b5563; margin-bottom: 0.5rem; }
.prose strong { font-weight: 700; color: #111827; }
.prose a { color: #2563eb; text-decoration: underline; }
.prose a:hover { color: #1e40af; }


