/* Basic CV Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.cv-container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 32px;
}

.header {
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.header img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: bottom;
  border: 2px solid #eaeaea;
  border-radius: 50%;
  margin-top: 10px;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
  color: black;
  font-weight: bold;
}

.contact-info span {
  font-size: 1em;
  color: black;
}

.contact-info span a {
  color: black;
  text-decoration: none;
}

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


button {
  background-color: #e9ebce;
  color: rgb(124, 146, 25);
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
}

.button {
  display: flex;
  justify-content: flex-end;
}

h1,
h2,
h3 {
  color: #2a4d69;
  margin-top: 0;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 8px;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 6px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 4px;
}

section {
  margin: 40px auto;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

.contact-info {
  font-size: 1em;
  color: #555;
  margin-bottom: 24px;
}

a {
  color: #2a4d69;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}