/* Staff Section Styling */
#staff-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.staff-member {
    text-align: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.staff-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #1995AD;
}

.staff-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.staff-role {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

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

@media (max-width: 768px) {
    .staff-member {
        margin-bottom: 15px;
    }
}
