:root {
    /* Primary Colors */
    --deep-blue: #003366;
    --sky-navy: #365F91;
    
    /* Secondary Colors */
    --steel-gray: #4B5D6B;
    --ivory-white: #F8F7F5;
    
    /* Accent Colors */
    --emerald-green: #3A8D6C;
    --ruby-red: #A62639;
    
    /* Neutral Colors */
    --slate-gray: #657687;
    --soft-silver: #D4D6D9;

    /* Functional Colors */
    --text-light: var(--ivory-white);
    --text-dark: var(--steel-gray);
    --background-primary: var(--deep-blue);
    --background-secondary: var(--ivory-white);
    --accent-primary: var(--emerald-green);
    --accent-secondary: var(--ruby-red);

    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    --deep-blue-rgb: 44, 62, 80;
    --sky-navy-rgb: 41, 128, 185;
}
