.team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
}

/* الجزء العلوي */
.right-team {
  width: 80%;
  text-align: center;
}

.right-team h2 {
  font-size: 36px;
  color: var(--primaryColor);
}

.right-team h2 span {
  color: var(--blue);
}

.right-team p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(29, 45, 94, 0.85);
}


.left-team {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}


.team-content {
  flex: 1;
}

.team-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--blue);
}

.team-content ul {
  list-style-type: disc !important;
  list-style-position: outside;
  padding-right: 22px;
  margin-bottom: 25px;
   color: var(--primaryColor);
}

.team-content ul li {
  display: list-item !important;
  list-style-type: disc !important;
  margin-bottom: 10px;
  line-height: 1.6;
}


.btn-team {
  display: inline-block;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  background-color: #1d2d5e;
  padding: 14px 35px;
  border-radius: 99px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-team:hover {
  background-color: var(--blue);
}


.team-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.team-img {
  width: 100%;
  max-width: 500px;

}


@media (max-width: 992px) {
  .left-team {
    flex-direction: column;
    text-align: center;
  }

  .team-image {
    margin-top: 30px;
  }
}