/* styles.css */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.resume {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2.5em;
  margin: 0;
  color: #2c3e50;
}

header p {
  margin: 5px 0;
  color: #666;
}

h2 {
  font-size: 1.75em;
  color: #2c3e50;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 5px;
  margin-top: 20px;
}

.item {
  margin-bottom: 20px;
}

.item h3 {
  font-size: 1.5em;
  margin: 10px 0;
  color: #34495e;
}

.item p {
  margin: 5px 0;
  color: #666;
}

ul {
  list-style-type: disc;
  margin: 10px 0;
  padding-left: 20px;
}

ul li {
  margin-bottom: 5px;
}

.skills ul {
  list-style-type: none;
  padding-left: 0;
}

.skills ul li {
  margin-bottom: 10px;
}

.skills ul li strong {
  color: #2c3e50;
}