.team-section {
  display: flex;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
}

.team-text {
  flex: 1;
}

.team-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.team-img img {
  width: 80%;
  max-width: 380px;
  border-radius: 10px;
  object-fit: cover;
}

.team-paragraph {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .team-section {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .team-img img {
    width: 100%;
  }
}
