* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f6f8;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 32px;
}

.title {
  font-size: 18px;
  color: #555;
  margin: 8px 0;
}

.contact {
  font-size: 14px;
  color: #666;
}

section {
  margin-bottom: 25px;
}

section h2 {
  font-size: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.item h3 {
  font-size: 16px;
}

.item span {
  font-size: 13px;
  color: #777;
}

.item p {
  margin-top: 6px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.skills li {
  background: #e9ecef;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 30px;
}
