/* Apply styles to headings */
h1, h2 {
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 10px;
  }
  
  /* Style paragraphs */
  p {
    font-family: Arial, sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Style links */
  a {
    color: #007BFF;
    text-decoration: none;
  }
  
  /* Style unordered list */
  ul {
    list-style-type: disc;
    margin-left: 20px;
  }
  
  /* Style list items */
  li {
    margin-bottom: 10px;
  }
  
  /* Apply specific styles to strong elements within list items */
  li strong {
    font-weight: bold;
    color: #222;
  }
  
  /* Add a background color to code snippets (for example links) */
  code {
    background-color: #f0f0f0;
    padding: 2px 4px;
    border: 1px solid #ccc;
    font-family: Consolas, monospace;
    font-size: 12px;
    color: #333;
  }
  
  /* Style the "Last updated" date */
  p:last-child {
    font-style: italic;
  }
  
  /* Style the contact information */
  ul li:last-child {
    font-weight: bold;
  }
  
  /* Apply specific styles to email addresses */
  ul li:last-child a {
    color: #007BFF;
  }
  