/* Global Variables */
:root {
  --primary-color: #0c2753;
  --primary-light: #1a3a6c;
  --primary-dark: #081c3e;
  --secondary-color: #78291c;
  --secondary-light: #FF5733;
  --accent-color: #4a90e2;
  --text-dark: #212529;
  --text-light: #6c757d;
  --text-muted: #8a94a6;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --background-gradient: linear-gradient(135deg, #f8f9fa, #e9ecef);
  --border-light: rgba(255, 255, 255, 0.15);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition-standard: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}