/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
    max-width: 900px;
    margin: auto;
    padding: 20px;
  }
  
  /* Headings */
  h1 {
    text-align: center;
    color: #8B0000; /* deep red */
    margin-bottom: 10px;
  }
  
  h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 30px;
    color: #444;
  }
  
  h4 {
    margin-top: 20px;
    color: #5a2d0c;
  }
  
  /* Text */
  p {
    margin: 10px 0;
  }
  
  ol {
    margin: 10px 0 20px 30px;
  }
  
  li {
    margin-bottom: 6px;
  }
  
  /* Links */
  a {
    color: #006699;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
    color: #004466;
  }
  
  /* Images */
  img {
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
  }
  
  img:hover {
    transform: scale(1.05);
  }
  
  /* Section spacing */
  h2 + p, h2 + ol, h2 + img {
    margin-top: 15px;
  }
  
  /* Footer link (Evaluation Doc) */
  body > a:last-of-type {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 15px;
    background-color: #8B0000;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.2s;
  }
  
  body > a:last-of-type:hover {
    background-color: #a52a2a;
  }
  