* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Baskerville', 'Crimson Text', Georgia, serif;
  background-color: #faf9f6;
  color: #2c2c2c;
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 30px;
}

header {
  margin-bottom: 60px;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.3em;
  line-height: 1.2;
}

h2 {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 1.2em;
  margin-bottom: 0.3em;
}

p {
  margin-bottom: 1.2em;
}

a {
  color: #2c2c2c;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: #2c2c2c;
}

nav {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid #ddd;
}

nav a {
  margin-right: 1.5em;
  font-size: 0.93em;
}

.subtitle {
  font-size: 1em;
  color: #666;
  font-style: italic;
}

ul {
  margin-left: 2em;
  margin-bottom: 1.2em;
}

li {
  margin-bottom: 0.5em;
}

.project {
  margin-bottom: 2em;
}

.project-title {
  font-weight: 600;
  margin-bottom: 0.2em;
}

.project-title a {
  color: #2c2c2c;
  border-bottom: 1px solid #ccc;
}

.project-title a:hover {
  border-bottom-color: #2c2c2c;
}

.project-tech {
  font-size: 0.9em;
  color: #666;
  font-style: italic;
  margin-bottom: 0.5em;
}

.section {
  margin-bottom: 3em;
}

.experience {
  margin-bottom: 2.5em;
}

.job-header {
  margin-bottom: 0.3em;
}

.job-meta {
  font-size: 0.9em;
  color: #666;
  font-style: italic;
  margin-bottom: 0.8em;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .container {
    padding: 40px 20px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  h2 {
    font-size: 1.4em;
  }
  
  nav a {
    display: inline-block;
    margin-bottom: 0.5em;
  }
}
