.family-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.member {
  cursor: pointer;
  margin: 20px;
  display: inline-block;
  text-align: center;
  transition: transform 0.2s;
}

.member:hover {
  transform: scale(1.1);
}

.member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #333;
}

.name {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

.arrow {
  font-size: 20px;
  color: #666;
}

.children {
  display: none; /* Hidden by default */
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .family-tree {
    margin-top: 30px;
  }

  .member img {
    width: 80px;
    height: 80px;
  }

  .name {
    font-size: 14px;
  }
}
