@font-face {
  font-family: "HelveticaNeueLTStd-Roman";
  src: url("/fonts/HelveticaNeueLTStd-Roman.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaNeueLTStd-Md";
  src: url("/fonts/HelveticaNeueLTStd-Md.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaNeueLTStd-Lt";
  src: url("/fonts/HelveticaNeueLTStd-Lt.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaNeueLTStd-Bd";
  src: url("/fonts/HelveticaNeueLTStd-Bd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "helvetica", sans-serif;
  
}

.custom-list {
  list-style: none;
  counter-reset: list-counter;
}
.custom-list li {
  counter-increment: list-counter;
}
.custom-list li::before {
  content: counter(list-counter) ") ";
  /* Additional styling can be added here */
}
