:root {
  --primary-color: #2C3D4F;
  --secondary-color: #E67E22;
  --accent-color: #F59D2A;
  --light-color: #ECF0F1;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #34495D 0%, #2C3D4F 100%);
  --hover-color: #D35400;
  --background-color: #FAFCFC;
  --text-color: #34495D;
  --border-color: rgba(44, 61, 79, 0.2);
  --divider-color: rgba(230, 126, 34, 0.2);
  --shadow-color: rgba(15, 16, 33, 0.15);
  --highlight-color: #F1C40F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base resets to avoid Tailwind color classes overriding custom vars */
a {
    color: inherit;
    text-decoration: none;
}