/* Base styling for the profile page */
:root {
  --text-color: #333;
  --link-color: #0066cc;
  --link-hover-color: #004494;
  --background-color: #ffffff;
  --font-family: 'Poppins', sans-serif;
  --heading-font-family: var(--font-family);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

main {
  max-width: 600px;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover, a:focus {
  color: var(--link-hover-color);
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: var(--heading-font-family);
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
  margin-bottom: 20px;
}

li {
  margin-bottom: 8px;
}

#profile-picture-container {
  text-align: center;
  margin-bottom: 20px;
}

#profile-picture {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

#name {
  text-align: center;
  margin-bottom: 10px;
}

#occupation, #location {
  margin-bottom: 15px;
}

#bio {
  margin: 25px 0;
}

#profile-items {
  margin-top: 30px;
}

.fa-ul {
  margin-left: 1.5em;
}

#footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
  text-align: center;
}
