.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content:space-evenly;
  padding: 20px;
  /* border: 2px solid black; */
  /* margin-left: 100px; */

}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: calc(50% - 30px);
  max-width: 500px;
  transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card img {
margin: auto;
  width: 70%;
  height: 250px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.title {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

.role {
  font-size: 16px;
  font-weight: 500;
  color: #7a7a7a;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  text-decoration: none;
  color:#aa9c71;
  font-size: 36px;
  transition: color 0.3s ease;
  margin-left: 20px;
}

.social-links a:hover {
  color: #beb06c;
}

@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}