:root {
  /* Brand Colors */
  --primary-deep-green: #006950;
  --primary-deep-green-dark: #004d3a;
  --accent-orange: #F58220;
  --accent-orange-hover: #e06c10;
  
  /* Neutral Colors */
  --bg-color-light: #fdfdfd;
  --bg-color-alt: #f4f7f6;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --text-light: #ffffff;
  
  /* Typography */
  --font-heading: 'CreatoDisplay', 'Outfit', 'Inter', sans-serif;
  --font-body: 'Outfit', 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  --spacing-xxl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(245, 130, 32, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
