/* staff.css */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #23272f;
  margin: 0;
  padding: 0;
}

header {
  background: #2d3a4a;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
}

.staff-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  box-sizing: border-box;
}

.staff-box {
  display: flex;
  align-items: center;
  width: 60%;
  margin: 2rem 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.staff-box.left {
  flex-direction: row;
}

.staff-box.right {
  flex-direction: row-reverse;
}

.staff-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 2rem;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  flex-shrink: 0;
}

.staff-info {
  flex: 1;
}

.staff-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.4rem;
  color: #2d3a4a;
}

.staff-info h4 {
  margin: 0 0 0.7rem 0;
  font-size: 1.1rem;
  color: #1a73e8;
  font-weight: 500;
}

.staff-info p {
  margin: 0;
  color: #3b4047;
  font-size: 1.03rem;
  line-height: 1.6;
}

footer {
  background: #2d3a4a;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .staff-box {
    width: 90%;
    padding: 1.2rem;
  }
  .staff-photo {
    margin: 0 1rem;
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 650px) {
  .staff-box,
  .staff-box.left,
  .staff-box.right {
    flex-direction: column !important;
    width: 98%;
    text-align: center;
    padding: 1rem 0.5rem;
  }
  .staff-photo {
    margin: 0 0 1rem 0;
    width: 90px;
    height: 90px;
  }
}
