body {
  margin: 0;
  background: #111;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.staff-page {
  padding: 60px 5%;
  background: #1a1a1a;
}

.page-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #fff;
}

.staff-section {
  margin-bottom: 70px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 25px;
  border-left: 5px solid #c40000;
  padding-left: 15px;
  color: #f5f5f5;
}

/* Grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Center grid for principal */
.center-grid {
  justify-items: center;
}

/* Card */
.staff-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(196, 0, 0, 0.25);
}

/* Image */
.staff-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Text */
.staff-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
  color: #ffffff;
}

.staff-card p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #b5b5b5;
}
