/* Menggunakan font Inter sebagai default */
body {
    font-family: 'Inter', sans-serif;
}

/* Efek smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Styling untuk section aktif di navigasi bawah */
.nav-link.active {
    color: #3b82f6;
    /* text-blue-600 */
    background-color: #ffffff;
    /* bg-white */
}