body {
  background-color: #f4f1ec;
  color: #333;
}



h1 {
  margin: 0;
  font-size: 2.5rem;
}

.team-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2f2f2f;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #2f2f2f;
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #1f1f1f;
}

.team-member p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

footer {
  background-color: #2f2f2f;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
}