/* Team Section Styles */
.portfolio-section-about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: #d6d6d6;
  gap: 20px;
  flex-wrap: wrap;
}

/* Team Member Styles */
.portfolio-member-about {
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-member-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Profile Picture Styles */
.profile-pic-about {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background-color: yellow;
}

.profile-pic-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Typography */
h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

p {
  font-size: 14px;
  color: #555;
  margin: 5px 0 15px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .portfolio-section-about {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .portfolio-member-about {
    width: 100%;
  }
}

@media (max-width: 480px) {

  h3 {
    font-size: 16px;
  }

  p {
    font-size: 12px;
  }

  button {
    font-size: 12px;
    padding: 8px 16px;
  }

  .profile-pic-about {
    width: 100px;
    height: 100px;
  }
}