.team-content-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  color: #fff;
  background: #222327;
  margin-top: 80px;
}

.team-content-block .container {
  position: relative;
  z-index: 2;
}

.team {
  max-width: 1200px;
  width: 100%;
}
.team-heading {
  font-family: "Fjalla One", sans-serif;
margin-top: 20px;
  line-height: 1.4;
  font-size: 60px;
  letter-spacing: 0.5px;
  text-align: left;
color: white;
}

@media screen and (max-width: 768px) {
  .team-heading {
    font-size: 40px;
  }
  
}
.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* Space between cards */
}

.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center items horizontally */
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card h2 {
  font-weight: normal;
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: #333;
  background: none; /* Removes any background behind the name */
}

.card .links {
  display: flex;
  justify-content: space-between; /* Space evenly */
  width: 100%; /* Make the links div take full width */
  margin-top: 10px; /* Adds space above the links */
}

.card .links a {
  text-decoration: none;
  color: #0077b5;
  font-weight: 300;
  transition: color 0.3s;
  flex: 1; /* Allows each icon to take equal space */
  text-align: center; /* Center the icon within its flex item */
}

.card .links a:hover {
  color: #45a049;;
}

/* Footer Styles */
.footer {
  margin-top: 20px; /* Space between team section and footer */
  padding: 20px;
  background-color: #1c1c1c; /* Example background color for footer */
  color: #fff; /* Text color for footer */
  text-align: center; /* Center align footer text */
  width: 100%;
}
