@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
    font-family: 'Inter', sans-serif;
}
/* Custom scrollbar styling for elegance */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-thumb {
    background: #800000; /* Teal accent */
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: #f3f4f6;
}

html {
    scroll-behavior: smooth;
}