:root {
    /* --- Colors (FEMAT Identity Refined) --- */
    /* Fresh Green from the Leaf Logo */
    --color-primary: #7CB342;
    --color-primary-dark: #558B2F;

    /* Technical/Construction Greys */
    --color-secondary: #37474F;
    /* Blue-grey for technical/expert look */
    --color-text-main: #263238;
    --color-text-light: #546E7A;

    /* Backgrounds */
    --color-bg-light: #FAFAFA;
    --color-bg-white: #FFFFFF;
    --color-bg-dark: #263238;
    /* For dark sections */

    /* Accents */
    --color-accent: #FF7043;
    /* Warm orange for subtle CTAs */

    /* --- Typography --- */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Roboto', sans-serif;
    /* Clean, geometric */

    /* --- Spacing & Layout --- */
    --container-width: 1200px;
    --header-height: 80px;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
}