/*
  main.css - base styles + list styling
  Color theme: navy blue, black, and orange
*/

/* Global defaults */
body {
  font-family: Calibri, Arial, sans-serif;
  color: black; /* default text color */
  background-color: #fff; /* clean white background for contrast */
  margin: 20px;
}

/* Headings */
h1, h2, h3 {
  color: navy; /* consistent deep blue for structure */
}

/* Paragraph styling */
p {
  color: black;
  line-height: 1.6;
}

/* Add a soft highlight for emphasis */
p strong {
  color: orange;
}

/* --- List styling --- */

/* Unordered: orange circle bullets */
.circle-bullets {
  list-style-type: circle;
  color: orange;
}

/* Ordered: uppercase letters in navy */
.upper-alpha {
  list-style-type: upper-alpha;
  color: navy;
}

/* Ordered: lowercase roman numerals in orange */
.lower-roman {
  list-style-type: lower-roman;
  color: orange;
}

/* Optional section formatting */
section {
  border-left: 5px solid orange;
  padding-left: 15px;
  margin-top: 20px;
}