
header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #8a6f2f;
  color: white;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}
.team-member {
  text-align: center;
  background-color: #f1f1e8;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
footer {
  text-align: center;
  background-color: #8a6f2f;
  color: white;
  padding: 1rem;
}
footer a {
  color: #ffffff;
  text-decoration: underline;
}
