.details-container {
  width: 80%;
  margin: 0 auto;
  background: #c9c9c9;
  border-radius: 35px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.member-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #b7d97a;
  padding: 25px 35px;
  border-radius: 50px;
  width: 100%;
  box-sizing: border-box;
}

.member-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.member-info {
  flex: 1;
}

.member-name {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}

.member-name span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #444;
}

.member-contact {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #2f6b2f;
  text-decoration: none;
}

.member-contact:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Keep member content above decorative circles */
.groups-container,
.member-card {
  position: relative;
  z-index: 2;
}