* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", Times New Roman;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.1;
  color: #333;
  background-color: #f9f9f9;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #000;
  padding-bottom: 20px;
}

.header h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-info {
  font-size: 13px;
  line-height: 1.6;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.separator {
  margin: 0 5px;
  color: #666;
}

section {
  margin-bottom: 25px;
}

h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.summary {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.job {
  margin-bottom: 20px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.job-title {
  font-weight: bold;
  font-size: 14px;
}

.job-date {
  font-style: italic;
  font-size: 13px;
  color: #666;
}

.job-company {
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
}

ul {
  margin-left: 20px;
  margin-top: 8px;
}

li {
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.skills-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  font-size: 13px;
  line-height: 1.6;
}

.skills-label {
  font-weight: bold;
}

.project {
  margin-bottom: 20px;
}

.project-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 3px;
}

.project-links {
  font-size: 12px;
  margin-bottom: 8px;
  color: #666;
}

.project-links a {
  color: #0066cc;
  text-decoration: none;
}

.project-links a:hover {
  text-decoration: underline;
}

.training-item {
  margin-bottom: 18px;
}

.training-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.training-title {
  font-weight: bold;
  font-size: 14px;
}

.training-date {
  font-style: italic;
  font-size: 13px;
  color: #666;
}

.training-company {
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
}

.education-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}

.degree {
  font-weight: bold;
}

.education-dates {
  font-style: italic;
  color: #666;
}

.education-gpa {
  font-style: italic;
  color: #666;
}

.involvement-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}

.involvement-title {
  font-weight: bold;
}

.involvement-date {
  font-style: italic;
  color: #666;
}

.involvement-link {
  color: #0066cc;
  text-decoration: none;
}
