@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.prose {
    color: #374151;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #111827;
    font-weight: 600;
}
.prose a, .cta-primary {
    color: #ea580c;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
}
.cta-primary {
    background-color: #f59e0b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    display: inline-block;
}
.cta-primary:hover {
    background-color: #e69009;
}
.prose a:hover {
    color: #c2410c;
    text-decoration: underline;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.prose ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    font-weight: 600;
}

.prose blockquote {
    border-left: 4px solid #f59e0b;
    padding-left: 1.5rem;
    margin-left: 0;
    font-style: italic;
    color: #4b5563;
}

.prose code {
    background-color: #f3f4f6;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: monospace;
}

.prose pre {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose th, .prose td {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.prose th {
    background-color: #f3f4f6;
    font-weight: 600;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}