/* Custom properties for color matching */
:root {
  --navy: #142F45;
  --yellow: #F2D248;
  --gray-bg: #EDF1F4;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
