:root {
    /* Colors extracted from GouvData image */
    --bg-primary: #010b14;
    /* Deepest Navy */
    --bg-secondary: #041624;
    /* Card Background */
    --bg-tertiary: #0a253a;
    /* Lighter elements */

    --text-primary: #ffffff;
    --text-secondary: #b0c4de;
    /* Light blue-grey text */
    --text-muted: #607d8b;

    --accent-primary: #007a8c;
    /* Teal for buttons */
    --accent-secondary: #00bcd4;
    /* Bright Cyan for text highlights */
    --accent-tertiary: #fdd835;
    /* Yellow/Gold accent */

    --accent-glow: rgba(0, 188, 212, 0.2);

    --border-color: #1c3a4f;

    /* Typography */
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

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

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

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px var(--accent-glow);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
}