.about-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
  line-height: 1.6;
  animation: moveup 2s ease-in;
}

.about-section h1 {
  text-align: center;
  margin-top: 20px;
}

.about-section p {
  margin-bottom: 15px;
}

.team-roles {
  list-style-type: none;
  padding: 0;
  margin-bottom: 15px;
}

.team-roles li {
  margin-bottom: 8px;
}

.team-members-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 30px;
  animation: moveUp 2s ease-in;
}

.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #a2a2a233;
  border-radius: 10px;
  background-color: var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 5px var(--secondary-color);
}

.member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  margin-bottom: 10px;
}

.member-name {
  font-weight: 500;
  color: var(--text-color, #333);
}

@keyframes moveUp {
  from {
    transform: translateY(30%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
