body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: #f0f2f5;
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 40px;
  background-color: #4a4e56;
  color: white;
  padding-left: 0px;
  padding-right: 0px;
}

.profile-picture {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  margin-right: 30px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-name {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
}

.profile-title {
  margin: 5px 0 20px 0;
  font-size: 1.7rem;
  font-weight: 400;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.contact-links li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-links li i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.contact-links li a:hover {
  color: #d1d1d1;
}

@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-right: 30px;
  }

  .profile-info {
    align-items: center;
  }

  .profile-name {
    font-size: 1.8rem;
  }

  .profile-title {
    margin-bottom: 25px;
  }

  .contact-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
