/* Team Section Styles */
.team-section {
  background-color: var(--cl-dor);
  padding: 40px 0;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #020b14; /* Dark navy color */
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 250px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #020b14;
  margin-bottom: 10px;
}

.team-member .role {
  font-size: 1rem;
  color: #ce9b00; /* Golden color */
  margin-bottom: 10px;
}

.team-member .bio {
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 80%;
    margin-bottom: 30px;
  }
}
