.team-page {
  padding: 2rem 1rem;
}

.team-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.team-member {
  background-color: #242526;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 20px #3A3B3C;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-member h3 {
  margin-bottom: 0.25rem;
  color: #a3a3a3;
}

.team-member p {
  font-size: 0.9rem;
  color: #ccc;
}

.contact-email {
  text-align: center;
  margin-top: 1rem;
}

.email-button {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.email-button:hover {
  background-color: #2980b9;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
