.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.profile-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 240px;
  background-color: #f3f3f3;
  padding: 3px 3px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s ease;
   word-break: break-word;
}

.profile-links a:hover {
  background-color: #e0e0e0;
}

.profile-links i {
  font-size: 18px;
  color: #0077b5; /* LinkedIn default color */
}

.team_member {
    background-color: #00C49C;
    color: white;
    text-align: center;
    padding: 15px 10px;

}
.container {
    display: flex;
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    margin-top: 50px;
    margin-bottom: 50px;
}
.sidebar {
    width: 30%;
    padding-right: 20px;
}
.sidebar img {
    width: 100%;
    border-radius: 5px;
	filter: grayscale(100%);
}
.contact-info p {
    padding: 8px;
    border-left: 3px solid #600000;
    font-size: 14px;
}
.contact-info a {
    text-decoration: none;
    color: #600000;
}
main {
    width: 70%;
}
main h2 {
    color: #600000;
    font-size: 20px;
}
main p {
    font-size: 14px;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar, main {
        width: 100%;
    }
}