@page {
  size: A4;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  margin: 0;
  padding: 15mm;
  width: 210mm;
  height: 297mm;
  box-sizing: border-box;
}

h1,
h2 {
  color: #333;
  margin: 0 0 10px 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 18px;
  color: #b31b1b;
  border-bottom: 1px solid #b31b1b;
  padding-bottom: 5px;
  margin-top: 15px;
}

a {
  color: #333;
  text-decoration: none;
  /* Remove underline */
}

a:hover {
  text-decoration: underline;
  /* Add underline on hover */
  color: #0077b5;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: Arial, sans-serif;
  padding: 0px 0;
}

.contact-info a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #0077b5;
}

.contact-info i,
.contact-info span {
  margin-right: 5px;
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.main-content {
  display: flex;
}

.left-column {
  flex: 7;
  padding-right: 13px;
}

.right-column {
  flex: 3;
}

.job-title {
  font-weight: bold;
}

.job-title-company {
  justify-content: flex-start;
  display: flex;
}

.date-location {
  justify-content: space-between;
  display: flex;
  margin-bottom: 5px;
}

.job-title,
.company,
.specialization {
  font-style: italic;
  color: #666;
  font-size: 11px;
  padding-right: 5px;
}

.date,
.location {
  font-style: italic;
  color: #666;
  font-size: 11px;
}

ul {
  margin: 3px 0;
  padding-left: 20px;
}

.strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.strength {
  background-color: #f0f0f0;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
}

.job {
  margin-bottom: 15px;
}

.education {
  margin-bottom: 15px;
}

.horizontal-section {}