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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #0B1421;
    background: #F8F5F0;
}

.heading-serif {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.guide-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #0B1421;
}

.guide-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0B1421;
}

.guide-content p,
.guide-content li {
    color: #374151;
    line-height: 1.65;
}

.guide-content ul,
.guide-content ol {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.guide-content li {
    margin-bottom: 0.35rem;
}

.guide-content hr {
    border: none;
    border-top: 1px solid rgba(74, 111, 165, 0.15);
    margin: 2rem 0;
}

.contact-card {
    background: white;
    border: 1px solid rgba(74, 111, 165, 0.15);
    border-radius: 1rem;
    padding: 1.25rem;
}

@media print {
    .no-print { display: none !important; }
    body { background: white; }
    .guide-shell { max-width: 100%; padding: 0; }
}