@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-sans-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-sans-latin-700.woff2') format('woff2'),
    url('../fonts/nunito-sans-latin-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Color Variables */
  --primary-color: #193358;
  --primary-hover: #0d6efd;
  --background-color: #f4f4f4;
  --text-color: #333;

  /* Typography */
  --font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --base-font-size: 20px;
  --line-height: 1.5;

  /* Spacing */
  --no-spacing: 0;
}

/* Base Reset */
* {
  margin: var(--no-spacing);
  padding: var(--no-spacing);
  box-sizing: border-box;
  font-family: var(--font-family);
}

/* Body Styles */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-size: var(--base-font-size);
  line-height: var(--line-height);
}

/* Reusable Background Utility Classes */
.bg-primary {
  background-color: var(--primary-color);
}

.bg-primary:hover {
  background-color: var(--primary-hover);
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

li ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
