body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 1rem;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007acc;
  box-shadow: 0 4px 8px rgb(0 122 204 / 0.4);
  margin-bottom: 1rem;
}

.name {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #007acc;
}

.title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1rem;
}

.contact-list,
.social-links {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-list li {
  font-size: 1rem;
  color: #555;
}

.contact-list li i {
  margin-right: 0.4rem;
  color: #007acc;
}

.social-links li a {
  color: #007acc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links li a:hover {
  color: #004a7c;
}

footer {
  text-align: center;
  margin: 3rem 0 1rem;
  font-size: 0.9rem;
  color: #777;
}

h2, h3 {
  color: #007acc;
  margin-top: 2rem;
}

hr {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 1.5rem;
}