body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #fdfaf5;
    color: #064e3b;
}

html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #f2e1c1;
}

/* Form inputs */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #14532d;
    box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.1);
}

/* Smooth page transitions */
main {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
