body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
}

.resume {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

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

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

.header p {
  font-size: 14px;
  color: #444;
}

.photo-placeholder {
  width: 100px;
  height: 100px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.columns {
  display: flex;
  gap: 40px;
}

.left, .right {
  flex: 1;
}

h2 {
  font-size: 18px;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  margin-top: 24px;
}

h3 {
  font-size: 15px;
  margin: 10px 0 5px;
}

h3 span {
  font-weight: normal;
  font-style: italic;
  font-size: 14px;
}

.date {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

ul {
  padding-left: 20px;
  margin-top: 5px;
}

ul li {
  margin-bottom: 5px;
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
}

.print-share-buttons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 15px 40px 0 0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
}

.print-btn {
  background-color: #0056d2;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.print-btn:hover {
  background-color: #003c9e;
}

@media print {
  .print-share-buttons {
    display: none;
  }

  footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
  }
}
