.equipe-section {
  background: #fff;
  border-radius: 8px;
  padding: 0.5rem 2rem;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.equipe-section h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
}

.equipe-section h3 {
  color: #34495e;
  margin: 1.5rem 0 1rem 0;
}

.equipe-section .container {
  max-width: 100%;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.team-member {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member.placeholder {
  opacity: 0.7;
  border-style: dashed;
}

.member-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: #2c3e50;
  margin: 0.5rem 0;
}

.role {
  color: #1abc9c;
  font-weight: bold;
  margin: 0.5rem 0;
}

.description {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  margin: 1rem 0;
  line-height: 1.5;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.skill {
  background: #1abc9c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.placeholder .skill {
  background: #bdc3c7;
}

/* Project Info */
.project-info {
  background: #2c3e50;
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.project-info h3 {
  color: #1abc9c;
  margin-top: 0;
}

.project-info h4 {
  color: #1abc9c;
  margin: 1.5rem 0 1rem 0;
}

.project-info p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.workflow-info ul {
  background: rgba(26, 188, 156, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #1abc9c;
  margin-bottom: 2rem;
}

.workflow-info ul li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.workflow-info ul li:last-child {
  margin-bottom: 0;
}

.project-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: #1abc9c;
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 0.9rem;
  color: #ecf0f1;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
