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

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

.feature-card {
    @apply bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-200 border border-gray-100 dark:border-gray-700 text-center;
}

.feature-card h3 {
    @apply text-xl font-semibold text-gray-800 dark:text-white mt-4 mb-2;
}

.feature-card p {
    @apply text-gray-600 dark:text-gray-300;
}

.dark {
    color-scheme: dark;
}