:root {
    /* Color Palette */
    --primary-color: #004e92;
    /* Deeper Royal Blue */
    --primary-dark: #000428;
    --primary-light: #0072ff;
    --primary-gradient: linear-gradient(135deg, #000428, #004e92);

    --accent-color: #d31027;
    /* Richer Red */
    --accent-dark: #ea384d;
    --accent-gradient: linear-gradient(135deg, #d31027, #ea384d);

    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;

    --bg-color: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #1e272e;

    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s ease;
}