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

body {
  font-family: 'Georgia', serif;
  background: #f5f5f0;
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 15px;
}

.container {
  max-width: 860px;
  margin: 48px auto;
  background: #fff;
  padding: 52px 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Header */
header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid #1a1a1a;
}

header h1 {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact {
  font-size: 0.88rem;
  color: #444;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  align-items: center;
}

.contact a {
  color: #1a5ea8;
  text-decoration: none;
}

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

.sep {
  color: #bbb;
  margin: 0 2px;
}

/* Sections */
section {
  margin-bottom: 32px;
}

h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #1a1a1a;
  margin-bottom: 18px;
}

p {
  color: #333;
  font-size: 0.93rem;
  text-align: justify;
  hyphens: auto;
}

/* Jobs */
.job {
  margin-bottom: 24px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.job-title {
  display: block;
  font-weight: 700;
  font-size: 0.97rem;
}

.job-company {
  display: block;
  font-size: 0.88rem;
  color: #555;
  font-style: italic;
}

.job-date {
  font-size: 0.85rem;
  color: #666;
  white-space: nowrap;
  padding-top: 2px;
}

ul {
  padding-left: 18px;
}

li {
  font-size: 0.91rem;
  color: #333;
  margin-bottom: 6px;
}

/* Skills */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  list-style: disc;
  padding-left: 18px;
}

.skills-list li {
  font-size: 0.91rem;
}

/* Tools */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tools-grid span {
  background: #f0f0eb;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.84rem;
  color: #333;
  font-family: 'Georgia', serif;
}

/* Education */
.edu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.edu-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.edu-item strong {
  font-size: 0.93rem;
}

.edu-item span {
  font-size: 0.87rem;
  color: #555;
  font-style: italic;
}

/* Responsive */
@media (max-width: 640px) {
  .container {
    margin: 0;
    padding: 32px 24px;
    box-shadow: none;
  }

  .job-header {
    flex-direction: column;
  }

  header h1 {
    font-size: 1.7rem;
  }
}
