 body {
      font-family: 'Segoe UI', sans-serif;
      background: #f4f6f9;
      margin: 0;
      padding: 0;
    }

    h2 {
      text-align: center;
      color: #053b6e;
      margin: 40px 0 20px;
      border-bottom: 2px solid #053b6e;
      display: inline-block;
      padding-bottom: 5px;
    }

    .staff-section {
      padding: 10px;
      max-width: 1200px;
      margin: auto;
    }

    .full-staff-photo {
      text-align: center;
      margin-bottom: 40px;
    }

    .full-staff-photo img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .staff-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .staff-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      width: 200px;
      padding: 0px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .staff-card:hover {
      transform: translateY(-5px);
    }

    .staff-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      padding-top: 10px;
      border-bottom: 1px solid #eee;
    }

    .staff-info {
      padding: 10px;
    }

    .staff-name {
      font-size: 16px;
      font-weight: 600;
      color: #0056b3;
    }

    .staff-role {
      font-size: 14px;
      color: #666;
    }

    @media screen and (max-width: 600px) {
      .staff-card {
        width: 90%;
      }
    }