body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.resume {
  max-width: 900px;
  margin: auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
}

.info h1 {
  margin: 0;
  font-size: 32px;
  color: #2c3e50;
}

.info p {
  margin: 6px 0;
  font-size: 14px;
  color: #333;
}

.info a {
  color: #0073b1; /* LinkedIn blue */
  text-decoration: none;
}

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

.photo img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ccc;
}

h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-top: 30px;
  font-size: 20px;
  color: #34495e;
}

p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

ul {
  list-style-type: square;
  padding-left: 20px;
  font-size: 14px;
  color: #444;
}

ul li {
  margin-bottom: 5px;
}