
body {
    margin: 0;
    padding: 0;
    background-image: url("Website background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    font-family: Arial, sans-serif;
}


/* === Staff section === */
.staff-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 1.5rem;
}

.staff-card,
.consultant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
}

.staff-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 4px solid #FFA500;
}

.staff-photo--lg {
    width: 160px;
    height: 160px;
}


.staff-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.staff-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}


.staff-heading {
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0 10px 0;
  text-align: left;
  color: #FFA500;
}
