body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 30px 60px;
  color: #111;
  background: #ffffff;
}

.site-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.profile-box {
  display: flex;
  align-items: flex-start;
  background: #f3f3f3;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.profile-photo img {
  width: 220px;
  border-radius: 8px;
  margin-right: 35px;
}

.profile-info p {
  margin: 6px 0;
  font-size: 18px;
}

.profile-info a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #d4a017;
}

.tabs {
  display: flex;
  margin-top: 10px;
  border-bottom: 1px solid #c7d1df;
}

.tabs a {
  padding: 18px 22px;
  background: #f4f4f4;
  margin-right: 5px;
  text-decoration: none;
  color: #111;
  font-weight: bold;
  border: 1px solid transparent;
}

.tabs a.active {
  background: #ffffff;
  border: 1px solid #c7d1df;
  border-bottom: 1px solid #ffffff;
}

.content {
  border: 1px solid #c7d1df;
  border-top: none;
  padding: 25px;
  font-size: 20px;
  line-height: 1.7;
}

.content h2 {
  margin-top: 0;
}