/** Color Variables **/

 :root {
  --color-primary: #006241;
  --color-secondary: #a4c4ae;
  --color-tertiary: #a4c4ae;

  --shadow-tertiary: 0 4px 12px rgba(164, 194, 174, 0.3);
  
  /* Compliance Settings - Text colors calculate automatically based on these flags */
  /* Set to 0 if secondary passes WCAG 4.5:1 (will automatically use white text) */
  /* Set to 1 if secondary does NOT pass WCAG 4.5:1 (will automatically use dark text) */
  --secondary-fails-compliance: 1;
  
   /* Set to 0 if tertiary passes WCAG 4.5:1 (will automatically use white text) */
  /* Set to 1 if tertiary does NOT pass WCAG 4.5:1 (will automatically use dark text) */
  --tertiary-fails-compliance: 1;
 }