:root {
    --imc-green: #9BD818;
    --imc-green-dark: #7AA014;
    --imc-orange: #FF9D00;
    --imc-orange-dark: #CC7C00;
    --imc-gray-light: #F5F5FA;
    --imc-gray: #A0A0A0;
    --imc-gray-border: #D0D4D8;
    --imc-white: #FFFFFF;
    --imc-black: #333333;
    --imc-radius: 12px;
    --spacer-xs: 8px;
    --spacer-sm: 16px;
    --spacer-md: 24px;
    --spacer-lg: 32px;
    --spacer-xl: 40px;
    --spacer-xxl: 64px;
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-md: 18px;
    --font-size-lg: 24px;
    --font-size-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --header-height: 96px;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v22-latin_latin-ext-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/quicksand-v31-latin_latin-ext-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/quicksand-v31-latin_latin-ext-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--imc-black);
    background-color: var(--imc-gray-light);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}