body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* Clean white background */
    color: #1e293b; /* Dark slate gray for text */
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}
/* Custom scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
} 