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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

header .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

header a {
  color: #0066cc;
  text-decoration: none;
}

header a:hover {
  text-decoration: underline;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  border-bottom: 2px solid #eee;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #222;
}

.job {
  margin-bottom: 1.5rem;
}

.job h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.job .date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}

ul {
  margin-left: 1.5rem;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.skills li {
  background: #f0f0f0;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
