/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1em;
  line-height: 1.6;
  background-color: #FAF9F6;
  color: #1a1a1a;
  padding: 1.5em;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Navigation */
nav {
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid #d0d0d0;
}

nav a {
  color: #8B0000;
  text-decoration: none;
  margin-right: 0.5em;
}

nav a:hover {
  text-decoration: underline;
}

/* Typography */
h1 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 1.6;
}

h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 1em;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 0.3em;
}

p {
  margin-bottom: 1em;
  line-height: 1.6;
}

/* Links */
a {
  color: #8B0000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul {
  list-style-type: none;
  margin-bottom: 1.5em;
}

ul li {
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

/* Updates and project lists */
.update-item,
.project-item {
  margin-bottom: 1em;
}

.year {
  font-weight: bold;
  margin-right: 0.5em;
}

.date {
  color: #666;
  margin-right: 0.5em;
}

/* Footer */
footer {
  margin-top: 4em;
  padding-top: 2em;
  border-top: 1px solid #d0d0d0;
  text-align: center;
  font-size: 0.9em;
  color: #666;
}
