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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11pt;
  line-height: 1.5;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 50px;
}

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

.name {
  font-size: 24pt;
  font-weight: bold;
  color: #1e293b;
}

.title {
  font-size: 12pt;
  color: #3b82f6;
  margin: 5px 0;
}

.contact {
  font-size: 10pt;
  color: #64748b;
  margin-top: 8px;
}

.contact span {
  margin: 0 10px;
}

h2 {
  font-size: 12pt;
  color: #3b82f6;
  text-transform: uppercase;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 5px;
  margin: 25px 0 15px;
}

.section {
  margin-bottom: 20px;
}

.job {
  margin-bottom: 18px;
}

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

.job-title {
  font-weight: bold;
  color: #1e293b;
}

.job-company {
  color: #3b82f6;
}

.job-date {
  font-size: 10pt;
  color: #64748b;
}

.job-location {
  font-size: 10pt;
  color: #64748b;
}

ul {
  margin: 8px 0;
  padding-left: 20px;
}

li {
  font-size: 10pt;
  margin-bottom: 4px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.skill-group {
  break-inside: avoid;
}

.skill-group-title {
  font-size: 9.5pt;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  background: #eff6ff;
  color: #3b82f6;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 9pt;
}

.education-item {
  display: flex;
  justify-content: space-between;
}

.edu-school {
  font-weight: bold;
}
