/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Primary Colors */
    --primary-white: #FFFFFF;
    --primary-black: #000000;
    --primary-blue: #0E65D7;
    
    /* Background Colors */
    --background-primary: #F6F4FF;
    --gradient-blue-orange: linear-gradient(90deg, #346BFA 0%, #D0901A 100%);
}

/* Global Font Settings */
* {
    font-family: var(--font-family-primary);
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
