:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --accent: #0056ff;
}
body {
  margin: 0;
  padding: 40px;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  max-width: 900px;
  margin-inline: auto;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.header-info {
  max-width: 70%;
}
h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
}
h2 {
  font-size: 18px;
  margin-top: 40px;
  color: var(--accent);
  font-weight: 600;
}
p {
  margin: 6px 0;
}
.muted {
  color: var(--muted);
  font-size: 14px;
}
.section {
  margin-bottom: 25px;
}
.job {
  margin-bottom: 15px;
}
.job-title {
  font-weight: 600;
}
.job-meta {
  font-size: 14px;
  color: var(--muted);
}
ul {
  margin: 6px 0 0 18px;
}
a {
  color: var(--accent);
  text-decoration: none;
}
.photo {
  width: 110px;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
}

.contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  text-decoration: none;
}

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

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.github-icon {
  color: #000000;
}

.skills-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-category h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .skill-tag {
    font-size: 12px;
    padding: 3px 10px;
  }
}
