/* reset.css - Load this first */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F9FAFB;
    color: #1E293B;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

input, button, textarea, select {
    font: inherit;
}

/* variables.css - Global variables */
:root {
    /* Colors */
    --primary-color: #6366F1;
    --primary-hover: #4F46E5;
    --secondary-color: #10B981;
    --light-bg: #F9FAFB;
    --dark-text: #1E293B;
    --medium-text: #475569;
    --light-text: #94A3B8;
    --border-color: #E2E8F0;
    --error-color: #EF4444;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    /* Shadows */
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --button-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
    --button-shadow-hover: 0 4px 8px rgba(99, 102, 241, 0.4);
    /* Border radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-pill: 50px;
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    /* Font sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 2rem;
    --font-3xl: 2.5rem;
    /* Component sizes */
    --navbar-height: 50px;
    --container-max-width: 1200px;
}

