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

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F7F5EE;
}

::-webkit-scrollbar-thumb {
    background: #B8870A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #104E3C;
}

/* Section padding for mobile */
section {
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 1.5rem;
    }
}