.members-listing {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.members-listing:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-staff-section {
    margin-bottom: 40px;
}

.about-staff-section h1 {
    text-align: center;
    color: #007bff;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
}

.teacher-info, .staff-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.teacher-image, .staff-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.teacher-details, .staff-details {
    flex-grow: 1;
}

.teacher-details h2, .staff-details h2 {
    color: #007bff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.teacher-details p, .staff-details p {
    color: #555;
    font-family: 'Noto Sans', sans-serif;
    margin-bottom: 10px;
}

.teacher-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2em;
    color: #007bff;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    color: #555;
    font-family: 'Noto Sans', sans-serif;
}

.buttons-container {
    text-align: center;
}

.buttons-container button {
    padding: 10px 20px;
    margin: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons-container button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}
