body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #057cec;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.profile-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #222;
  color: #fff;
}

.profile-pic-centered {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* This makes it a circle */
  object-fit: cover;   /* Ensures the image fills the circle */
  border: 3px solid #3498db;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}


.profile-pic-left {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  border: 3px solid #3498db;
}

.header-text h1 {
  margin: 0;
  font-size: 28px;
}

.header-text p {
  margin: 5px 0 0;
  font-size: 16px;
}


section {
  padding: 20px;
  margin: 0 auto;
  max-width: 800px;
  background: white;
  margin-top: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}

h1, h2 {
  color: #2c3e50;
}

ul {
  list-style: square;
  padding-left: 20px;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}
