body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #000; 
  background: #F6F6F6;
}

h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}

.header {
  background: #F6F6F6;
  padding: 40px 0;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.profile {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.avatar-wrapper {
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.intro h1 {
  letter-spacing: 4px;
  color: #333;
}

.title {
  font-size: 16px;
  margin: 8px 0 12px;
  color: #555;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

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

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

section > h2 {
  color: #4F6A92;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 8px;
}

section > h2::after {
  content: "";
  display: block;
  height: 2px;
  background: #4F6A92;
  margin-top: 6px;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  margin-bottom: 30px;
}

.contact-list li {
  margin-bottom: 10px;
}

#experience h3 {
  font-size: 18px;
  margin-top: 20px;
  color: #000;
}

.date,
.company {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
  margin-bottom: 6px;
  font-weight: normal;
}

#education h3 {
  font-size: 14px;      
  font-weight: 600;
  margin-bottom: 4px;  
}

#education h3::after {
  content: none;
}

#education p {
  font-size: 14px;       
  color: #000;
  margin-bottom: 16px;   
}

ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 6px;
  line-height: 1.5;
  font-size: 14px;
}

