/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Typography and Layout */
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
  }
  
  header.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #004080;
    color: white;
  }
  
  section {
    margin: 40px auto;
    max-width: 800px;
  }
  
  h2 {
    margin-bottom: 10px;
    color: #004080;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
  }
  
  .project {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-left: 4px solid #004080;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .project h3 {
    margin-bottom: 5px;
  }
  
  ul {
    list-style-type: square;
    margin-left: 20px;
  }
  
  a {
    color: #004080;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    color: #666;
  }
  