/* Team Section Styles */
.team-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
}

.team-member:last-child {
  margin-bottom: 40px;
}

.team-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(212, 0, 46, 0.2);
  transition: transform 0.3s ease;
}

.team-image:hover {
  transform: scale(1.02);
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-info {
  padding: 10px 0;
}

.team-name {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--red);
  text-align: left;
}

.team-info p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 18px;
}

.team-info p:last-child {
  margin-bottom: 0;
}
